/**
* Copyright 2014-present Liquid Data Intelligence S.A.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.lqd.sdk;
import android.util.Log;
public class LQLog {
private static int LOG_LEVEL = 2;
public static final int PATHS = 7;
public static final int HTTP = 6;
public static final int DATA = 5;
public static final int INFO_VERBOSE = 4;
public static final int INFO = 3;
public static final int WARNING = 2;
public static final int ERROR = 1;
/**
* Changes the current Log level (Debugging proposes)
* @param level LogLevel
*/
public static void setLevel(int level) {
if( level < 1 || level > 7)
throw new IllegalArgumentException("Log levels are between 1 and 7");
LOG_LEVEL = level;
}
/**
* Gets the current log level
* @return the log level
*/
public static int getLevel() {
return LOG_LEVEL;
}
public static void paths(String message) {
if(LOG_LEVEL >= PATHS) {
Log.d(Liquid.TAG_LIQUID, message);
}
}
public static void http(String message) {
if(LOG_LEVEL >= HTTP) {
Log.d(Liquid.TAG_LIQUID, message);
}
}
public static void data(String message) {
if(LOG_LEVEL >= DATA) {
Log.v(Liquid.TAG_LIQUID, message);
}
}
public static void infoVerbose(String message) {
if(LOG_LEVEL >= INFO_VERBOSE) {
Log.i(Liquid.TAG_LIQUID, message);
}
}
public static void warning(String message) {
if(LOG_LEVEL >= WARNING) {
Log.w(Liquid.TAG_LIQUID, message);
}
}
public static void info(String message) {
if(LOG_LEVEL >= INFO) {
Log.i(Liquid.TAG_LIQUID, message);
}
}
public static void error(String message) {
if(LOG_LEVEL >= ERROR) {
Log.e(Liquid.TAG_LIQUID, message);
}
}
}