Commented out custom sharedLog due to changes in behaviour from version 2.101.0

This commit is contained in:
johan.forsberg 2022-11-11 22:58:48 +01:00
parent 2b2d068692
commit cc515a2562
1 changed files with 2 additions and 0 deletions

View File

@ -26,6 +26,7 @@ extern (C) int UIAppMain(string[] args) {
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) {
debug {
sharedLog = cast(shared)new FileLogger("dcd.log");
@ -39,6 +40,7 @@ extern (C) int UIAppMain(string[] args) {
sharedLog = cast(shared)new NullLogger();
}
}
*/
//version (Windows) {
// import derelict.lldb.lldbtest;