package com.orhanobut.logger; import android.util.Log; /* loaded from: classes.dex */ public class LogcatLogStrategy implements LogStrategy { @Override // com.orhanobut.logger.LogStrategy public void a(int i, String str, String str2) { Utils.a(str2); if (str == null) { str = "NO_TAG"; } Log.println(i, str, str2); } }