aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/util/Log.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/util/Log.cpp')
-rw-r--r--src/crepe/util/Log.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/util/Log.cpp b/src/crepe/util/Log.cpp
index 84d80a8..bc86c7e 100644
--- a/src/crepe/util/Log.cpp
+++ b/src/crepe/util/Log.cpp
@@ -25,7 +25,7 @@ string Log::prefix(const Level & level) {
}
void Log::log(const Level & level, const string & msg) {
- auto & cfg = Config::get_instance();
+ auto & cfg = crepe::Config::get_instance();
if (level < cfg.log.level) return;
string out = Log::prefix(level) + msg;