1st version that works

This commit is contained in:
2022-03-14 11:53:00 +02:00
parent ee2884b2ff
commit 3806d2c80d
617 changed files with 17293 additions and 4470 deletions

View File

@ -0,0 +1,36 @@
package com.safemobile.lib;
import android.util.Log;
public class SM
{
public static void Debug(String tag, String msg)
{
Log.d(tag,msg);
/*
try
{
if (!tag.toUpperCase().contains("DEFAULT"))
Log.d("Default",msg);
}
catch (Exception ex)
{
Log.d("Default","Error parse tag:"+ex.toString());
}
//*/
}
public static void Debug(String msg)
{
Log.d("Default",msg);
}
public static void Exception(String msg)
{
Log.e("Exception",msg);
}
public static void Exception(String tag, String msg)
{
Log.e(tag,msg);
}
}