Skip to content

Commit

Permalink
PrinterLogger: removed unused var
Browse files Browse the repository at this point in the history
> lib/DnAppLogger/src/DnApp/Logger/Endpoint/PrinterLogger.h:19:34: warning: unused parameter 'level' [-Wunused-parameter]
  • Loading branch information
MacDada committed Apr 23, 2023
1 parent ccccb5a commit 4eb861e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/DnAppLogger/src/DnApp/Logger/Endpoint/PrinterLogger.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace DnApp::Logger::Endpoint {
// would hide base class declarations.
using DnApp::Logger::Logger::log;

auto log(const LOG_LEVEL level, const char* const message) -> void override {
auto log(const LOG_LEVEL, const char* const message) -> void override {
printer.println(message);
}
private:
Expand Down

0 comments on commit 4eb861e

Please sign in to comment.