Last active
March 9, 2017 20:46
-
-
Save dors/4651b8ecff2f76c012ae to your computer and use it in GitHub Desktop.
Cool log util for Android apps that prints each log with the thread, class name and method name from which the log was made
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.util.Log; | |
import java.text.MessageFormat; | |
/* | |
* Copyright 2015 Dor Sakal | |
* | |
* 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. | |
*/ | |
public class LogUtil { | |
//TODO: use your own TAG here | |
private static final String TAG = "MY_TAG"; | |
/********************************* | |
* public static methods | |
*********************************/ | |
/** | |
* utility method to place in methods just for the sake of seeing that they were called | |
*/ | |
public static void logMethodCalled() { | |
doLog(Log.DEBUG, "called"); | |
} | |
public static void v(String text) { | |
doLog(Log.VERBOSE, text); | |
} | |
public static void d(String text) { | |
doLog(Log.DEBUG, text); | |
} | |
public static void i(String text) { | |
doLog(Log.INFO, text); | |
} | |
public static void w(String text) { | |
doLog(Log.WARN, text); | |
} | |
public static void e(String text) { | |
doLog(Log.ERROR, text); | |
} | |
/********************************* | |
* private static methods | |
*********************************/ | |
private static void doLog(int logLevel, String logText) { | |
StackTraceElement[] stackTrace = Thread.currentThread() | |
.getStackTrace(); | |
//take stackTrace element at index 4 because: | |
//0: VMStack.getThreadStackTrace(Native Method) | |
//1: java.lang.Thread.getStackTrace | |
//2: LogUtil -> doLog method (this method) | |
//3: LogUtil -> log method | |
//4: this is the calling method! | |
if (stackTrace != null && stackTrace.length > 4) { | |
StackTraceElement element = stackTrace[4]; | |
String fullClassName = element.getClassName(); | |
String simpleClassName = fullClassName.substring(fullClassName.lastIndexOf(".") + 1); | |
//add class and method data to logText | |
logText = MessageFormat.format("T:{0} | {1} , {2}() | {3}", Thread.currentThread() | |
.getId(), simpleClassName, element.getMethodName(), logText); | |
} | |
Log.println(logLevel, TAG, logText); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Calling from from MainActivity's onCreate like so: | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activity_main); | |
LogUtil.logMethodCalled(); | |
LogUtil.v("test v"); | |
LogUtil.d("test d"); | |
LogUtil.i("test i"); | |
LogUtil.w("test w"); | |
LogUtil.e("test e"); | |
} | |
//Would cause the following log: | |
11-24 13:21:09.909 28282-28282/com.sakal.loggist D/MY_TAG: T:1 | MainActivity , onCreate() | called | |
11-24 13:21:09.911 28282-28282/com.sakal.loggist V/MY_TAG: T:1 | MainActivity , onCreate() | test v | |
11-24 13:21:09.912 28282-28282/com.sakal.loggist D/MY_TAG: T:1 | MainActivity , onCreate() | test d | |
11-24 13:21:09.912 28282-28282/com.sakal.loggist I/MY_TAG: T:1 | MainActivity , onCreate() | test i | |
11-24 13:21:09.912 28282-28282/com.sakal.loggist W/MY_TAG: T:1 | MainActivity , onCreate() | test w | |
11-24 13:21:09.912 28282-28282/com.sakal.loggist E/MY_TAG: T:1 | MainActivity , onCreate() | test e |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome!
A must use in every project with a self respecting developer!