1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-26 08:49:37 +00:00

Normalises logging.

This commit is contained in:
Thomas Harte 2021-04-04 17:39:03 -04:00
parent d77ddaf4fa
commit e52649f74d

View File

@ -12,6 +12,7 @@
#include <cstdlib> #include <cstdlib>
#include <cmath> #include <cmath>
#define LOG_PREFIX "[UEF] "
#include "../../../Outputs/Log.hpp" #include "../../../Outputs/Log.hpp"
// MARK: - ZLib extensions // MARK: - ZLib extensions
@ -155,7 +156,7 @@ void UEF::get_next_pulses() {
break; break;
default: default:
LOG("!!! Skipping " << std::hex << next_chunk.id << std::endl); LOG("Skipping chunk of type " << PADHEX(4) << next_chunk.id);
break; break;
} }