Snazz up the kprintf() output a bit by giving it its own color.

This commit is contained in:
Andreas Kling
2018-10-31 20:10:39 +01:00
parent 9886b27d9c
commit dec5683e9c
10 changed files with 86 additions and 78 deletions

View File

@@ -46,7 +46,7 @@ bool ExecSpace::loadELF(MappedFile&& file)
if (!loader.load())
return false;
#ifdef EXECSPACE_DEBUG
kprintf("[ExecSpace] ELF loaded, symbol map now:\n");
kprintf("ExecSpace: ELF loaded, symbol map now:\n");
for (auto& s : m_symbols) {
kprintf("> %p: %s (%u)\n",
s.value.ptr,