Newer
Older
Import / applications / HighwayDash / ports / Framework / Log.h
@John Ryland John Ryland on 22 Dec 2020 215 bytes import NUC files
#ifndef LOG_H
#define LOG_H


enum LogLevel
{
    LL_Debug,
    LL_Error,
    LL_Info,
    LL_Verbose,
    LL_Warn
};


void Log(enum LogLevel a_level, const char* a_tag, const char* a_fmt, ...);


#endif // LOG_H