Merge branch 'mueller_globalPrinter' into mueller_framework

This commit is contained in:
Robin Müller 2020-05-15 18:51:58 +02:00
commit d48fe8fb09
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
#include <framework/serviceinterface/ServiceInterfaceStream.h>
void printer::print(uint8_t *data, size_t size, OutputType type) {
sif::info << "StorageAccessor: Printing data: [";
sif::info << "StorageAccessor: Printing data with size " << size << ": [";
if(type == OutputType::HEX) {
printer::printHex(data, size);
}