/* * Warn level logging */ public static void w(string message) { #if UNITY_ANDROID hsInternalLogger.CallStatic("w", new object[] { TAG, message }); #elif UNITY_IOS HelpshiftiOSLog.w(TAG, message); #endif }
public static int e(String tag, String log) { #if UNITY_IOS return(HelpshiftiOSLog.e(tag, log)); #elif UNITY_ANDROID return(HelpshiftAndroidLog.e(tag, log)); #endif }