void Update() { //add UNITY_LOG_DEBUG to not to strip calling LogDebug in all project CustomLog.LogDebug($"{typeof(LoggerExample)} some heavy string interpolation {HeavyMethod()}"); }
void Start() { CustomLog.Log("Info"); CustomLog.LogDebug("Debug"); }