From cc515a2562106b232ee380e22da5815cbf470a2b Mon Sep 17 00:00:00 2001 From: "johan.forsberg" Date: Fri, 11 Nov 2022 22:58:48 +0100 Subject: [PATCH] Commented out custom sharedLog due to changes in behaviour from version 2.101.0 --- src/dlangide.d | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dlangide.d b/src/dlangide.d index f1f59ac..a92d917 100644 --- a/src/dlangide.d +++ b/src/dlangide.d @@ -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;