1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-08-13 01:16:59 +02:00

Remove Log method from the bridge object

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

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