Skip to content

Commit

Permalink
Skip logging
Browse files Browse the repository at this point in the history
  • Loading branch information
daschuer authored Dec 9, 2024
1 parent 0cadf73 commit f5dbbac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/util/logging.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -256,10 +256,10 @@ inline void writeToLog(

const bool flush = flags & WriteFlag::Flush;

Check warning on line 257 in src/util/logging.cpp

View workflow job for this annotation

GitHub Actions / Ubuntu 24.04

unused variable 'flush' [-Wunused-variable]
if (flags & WriteFlag::StdErr) {
writeToStdErr(type, context, message, threadName, flush);
// writeToStdErr(type, context, message, threadName, flush);
}
if (flags & WriteFlag::File) {
writeToFile(type, message, threadName, flush);
// writeToFile(type, message, threadName, flush);
}
}

Expand Down

0 comments on commit f5dbbac

Please sign in to comment.