/*************************************************************************** * Project : shakti devt board * Name of the file : log.h * Brief Description of file : Header file for logger. * Name of Author : Abhinav Ramnath * Email ID : abhinavramnath13@gmail.com Copyright (C) 2019 IIT Madras. All rights reserved. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . ***************************************************************************/ /** * @file log.h * @brief Header file for logger. * @detail This file is used for logging. There are 6 levels of logging. Level 0 is the most critical. Usually system stops after level 0 logging. Level 3 is the default level of logging. */ #include // Log Levels #define TRACE 5 #define DEBUG 4 #define INFO 3 #define WARN 2 #define ERROR 1 #define FATAL 0 extern void vprintfmt(void (*putch)(int, void**), void **putdat, const char *fmt, va_list ap); //function prototype void log_trace(const char*fmt, ...); void log_info(const char*fmt, ...); void log_debug(const char*fmt, ...); void log_warn(const char*fmt, ...); void log_error(const char*fmt, ...); void log_fatal(const char*fmt, ...);