Back to project page android_sdk.
The source code is released under:
Copyright (c) 2012-2014 adjust GmbH, http://www.adjust.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Softw...
If you think the Android project android_sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.adjust.sdk; //from ww w . ja v a 2 s .c om import android.util.Log; public interface Logger { public enum LogLevel { VERBOSE(Log.VERBOSE), DEBUG(Log.DEBUG), INFO(Log.INFO), WARN(Log.WARN), ERROR(Log.ERROR), ASSERT(Log.ASSERT); final int androidLogLevel; LogLevel(final int androidLogLevel) { this.androidLogLevel = androidLogLevel; } public int getAndroidLogLevel() { return androidLogLevel; } } public void setLogLevel(LogLevel logLevel); public void setLogLevelString(String logLevelString); public void verbose(String message, Object ...parameters); public void debug(String message, Object ...parameters); public void info(String message, Object ...parameters); public void warn(String message, Object ...parameters); public void error(String message, Object ...parameters); public void Assert(String message, Object ...parameters); }