mirror of https://github.com/buggins/dlangide.git
Fix logger
This commit is contained in:
parent
e18eaa2b5b
commit
aeb045e66e
|
@ -6,7 +6,15 @@ import std.conv;
|
||||||
import dlangide.ui.frame;
|
import dlangide.ui.frame;
|
||||||
import dlangide.ui.commands;
|
import dlangide.ui.commands;
|
||||||
import dlangide.workspace.workspace;
|
import dlangide.workspace.workspace;
|
||||||
import std.experimental.logger;
|
|
||||||
|
static if(__VERSION__ > 2100)
|
||||||
|
{
|
||||||
|
import std.logger;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
import std.experimental.logger;
|
||||||
|
}
|
||||||
|
|
||||||
mixin APP_ENTRY_POINT;
|
mixin APP_ENTRY_POINT;
|
||||||
|
|
||||||
|
@ -26,18 +34,20 @@ extern (C) int UIAppMain(string[] args) {
|
||||||
runParserTests();
|
runParserTests();
|
||||||
}
|
}
|
||||||
|
|
||||||
version(Windows) {
|
static if(__VERSION__ > 2100) {
|
||||||
|
debug {
|
||||||
|
sharedLog = cast(shared)new FileLogger("dcd.log");
|
||||||
|
} else {
|
||||||
|
sharedLog = cast(shared)new NullLogger();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
debug {
|
debug {
|
||||||
sharedLog = new FileLogger("dcd.log");
|
sharedLog = new FileLogger("dcd.log");
|
||||||
} else {
|
} else {
|
||||||
sharedLog = new NullLogger();
|
sharedLog = new NullLogger();
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
debug {
|
|
||||||
//sharedLog = new FileLogger("dcd.log");
|
|
||||||
} else {
|
|
||||||
sharedLog = new NullLogger();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//version (Windows) {
|
//version (Windows) {
|
||||||
|
|
Loading…
Reference in New Issue