mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 08:24:32 -08:00
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.
11 lines
171 B
C++
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();
|