Skip to content

Instantly share code, notes, and snippets.

View gurpreetsingh2808's full-sized avatar

Gurpreet Singh gurpreetsingh2808

View GitHub Profile
@gurpreetsingh2808
gurpreetsingh2808 / Logger.java
Last active April 8, 2017 08:39
Custom logger for android
public class Logger {
private static final String TAG = Logger.class.getSimpleName();
private static Boolean flag = !AppUtils.isProductionBuild();
// To avoid printing stacktraces in debug builds and report caught exceptions in production/release build
public static void handleCaughtException(Exception ex) {
if (flag) {
ex.printStackTrace();
} else {