mirror of https://github.com/buggins/dlangide.git
Commented out custom sharedLog due to changes in behaviour from version 2.101.0
This commit is contained in:
parent
2b2d068692
commit
cc515a2562
|
|
@ -26,6 +26,7 @@ extern (C) int UIAppMain(string[] args) {
|
||||||
runParserTests();
|
runParserTests();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Comment out this for now due to changes in behavior (https://dlang.org/changelog/2.101.0.html#logger_sharedLog_returning_shared_logger)
|
||||||
version(Windows) {
|
version(Windows) {
|
||||||
debug {
|
debug {
|
||||||
sharedLog = cast(shared)new FileLogger("dcd.log");
|
sharedLog = cast(shared)new FileLogger("dcd.log");
|
||||||
|
|
@ -39,6 +40,7 @@ extern (C) int UIAppMain(string[] args) {
|
||||||
sharedLog = cast(shared)new NullLogger();
|
sharedLog = cast(shared)new NullLogger();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
//version (Windows) {
|
//version (Windows) {
|
||||||
// import derelict.lldb.lldbtest;
|
// import derelict.lldb.lldbtest;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue