From e52649f74d8859b4d94b94b7c3c79d399a254eb1 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 4 Apr 2021 17:39:03 -0400 Subject: [PATCH] Normalises logging. --- Storage/Tape/Formats/TapeUEF.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Storage/Tape/Formats/TapeUEF.cpp b/Storage/Tape/Formats/TapeUEF.cpp index 7e169406f..b98211811 100644 --- a/Storage/Tape/Formats/TapeUEF.cpp +++ b/Storage/Tape/Formats/TapeUEF.cpp @@ -12,6 +12,7 @@ #include #include +#define LOG_PREFIX "[UEF] " #include "../../../Outputs/Log.hpp" // MARK: - ZLib extensions @@ -155,7 +156,7 @@ void UEF::get_next_pulses() { break; default: - LOG("!!! Skipping " << std::hex << next_chunk.id << std::endl); + LOG("Skipping chunk of type " << PADHEX(4) << next_chunk.id); break; }