use TAG format that doesn't break logcat filtering

This commit is contained in:
Eric House 2018-12-07 11:03:08 -08:00
parent b58e121246
commit 2cdd50b5fd

View file

@ -23,7 +23,7 @@ package org.eehouse.android.xw4;
import java.util.Formatter;
public class Log {
private static final String PRE_TAG = BuildConfig.FLAVOR + ":";
private static final String PRE_TAG = BuildConfig.FLAVOR + "-";
public static void d( String tag, String fmt, Object... args ) {
String str = new Formatter().format( fmt, args ).toString();