diff --git a/include/spdlog/sinks/null_sink.h b/include/spdlog/sinks/null_sink.h index 16b33b82..3efac53b 100644 --- a/include/spdlog/sinks/null_sink.h +++ b/include/spdlog/sinks/null_sink.h @@ -22,7 +22,7 @@ protected: // prevent optimizer to remove this sink altogether (and do useful check while at it). if(msg.level == level::off) { - printf("null_sink: should never not be called if level is off!\n"); + printf("null_sink: should never be called if level is off!\n"); abort(); } }