Skip to content

Commit

Permalink
BLUGA: Remove logger warning
Browse files Browse the repository at this point in the history
PATCH
  • Loading branch information
Saverio976 committed Nov 3, 2023
1 parent 25410d3 commit 6005b64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/B-luga/include/B-luga/Logger.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ class Logger {
*
* @param message the message
*/
static void debug(const std::string &message)
static void debug(const std::string &message /* unused */)
{
#ifndef NDEBUG
if (getLogLevel() < LogLevel::Debug) {
Expand All @@ -131,7 +131,7 @@ class Logger {
*
* @param message the message
*/
static void trace(const std::string &message)
static void trace(const std::string &message /* unused */)
{
#ifndef NDEBUG
if (getLogLevel() < LogLevel::Trace) {
Expand Down

0 comments on commit 6005b64

Please sign in to comment.