Skip to content

Commit

Permalink
Merge pull request #99 from cyrusmsk/master
Browse files Browse the repository at this point in the history
Update logging.d
  • Loading branch information
etcimon committed Feb 27, 2024
2 parents a1ea4c7 + b1ed9ad commit 2a6aa93
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/libasync/internals/logging.d
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
module libasync.internals.logging;

import std.stdio : stdout;
import libasync.types;
static if (__VERSION__ < 2103){
import std.stdio : stdout;
import std.experimental.logger;
}
else {
import std.stdio : stdout;
import std.logger;
}
static __gshared FileLogger sharedLog;
Expand Down

0 comments on commit 2a6aa93

Please sign in to comment.