From 1d169d77786773f7b90f88259ee910ffe7a519a6 Mon Sep 17 00:00:00 2001 From: Peter M. Groen Date: Fri, 22 Apr 2022 00:02:03 +0200 Subject: [PATCH] Set category and messge in the right place --- src/log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/log.cpp b/src/log.cpp index cf80a58..a97f151 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -129,7 +129,7 @@ void Log::log( const std::string &category, const std::string &message, LogLevel ReplaceAll( logMessage, "%", "%%" ); } - write( toInt( level ), logCategory, logMessage ); + write( toInt( level ), logMessage, logCategory ); } // Static functions -- libgit2 0.21.4