1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-08 02:34:06 +02:00

Remove Log method from the bridge object

This commit is contained in:
chylex 2017-11-09 21:43:22 +01:00
parent cea72801a7
commit 6b7b690476

View File

@ -148,13 +148,9 @@ public void Alert(string type, string contents){
public void CrashDebug(string message){
#if DEBUG
Log(message);
System.Diagnostics.Debug.WriteLine(message);
System.Diagnostics.Debugger.Break();
#endif
}
public void Log(string data){
System.Diagnostics.Debug.WriteLine(data);
}
}
}