Files
jsix/src/kernel/log.h
Justin C. Miller 972ef39295 [fb] Output klog to fb if video exists
If there's no video, do as we did before, otherwise route logs to the fb
driver instead. (Need to clean this up to just have a log consumer
general interface?) Also added a "scrollback" class to fb driver and
updated the system_get_log syscall.
2021-01-03 18:13:41 -08:00

11 lines
171 B
C++

#pragma once
#include "kutil/logger.h"
namespace log = kutil::log;
namespace logs = kutil::logs;
void logger_init();
void logger_clear_immediate();
void logger_task();