mirror of
https://github.com/tailix/kernel.git
synced 2025-02-10 15:36:37 -05:00
Remove function "logger_initialize"
This commit is contained in:
parent
28ca4bd85d
commit
ca6af390df
3 changed files with 2 additions and 8 deletions
|
@ -1,9 +1,9 @@
|
|||
#include "multiboot.h"
|
||||
#include "logger.h"
|
||||
#include "console.h"
|
||||
|
||||
void init(struct KernelMQ_Multiboot_Info multiboot_info)
|
||||
{
|
||||
logger_initialize();
|
||||
console_initialize();
|
||||
|
||||
print_multiboot_info(multiboot_info);
|
||||
}
|
||||
|
|
|
@ -2,11 +2,6 @@
|
|||
|
||||
#include "console.h"
|
||||
|
||||
void logger_initialize()
|
||||
{
|
||||
console_initialize();
|
||||
}
|
||||
|
||||
void logger_info(const char *const s)
|
||||
{
|
||||
console_setcolor(VGA_COLOR_LIGHT_GREY);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#ifndef KERNELMQ_INCLUDED_LOGGER
|
||||
#define KERNELMQ_INCLUDED_LOGGER 1
|
||||
|
||||
void logger_initialize();
|
||||
void logger_info(const char *s);
|
||||
void logger_warn(const char *s);
|
||||
void logger_fail(const char *s);
|
||||
|
|
Loading…
Add table
Reference in a new issue