Newer
Older
Import / applications / HighwayDash / ports / Framework / Log.cpp
@John Ryland John Ryland on 22 Dec 2020 245 bytes import NUC files
#include "Log.h"
#include "../Platform/Qt/SystemLogger.h"


void Log(enum LogLevel /*a_level*/, const char* a_tag, const char* a_fmt, ...)
{
    va_list args;
    va_start(args, a_fmt);
    SystemLogger(a_tag, a_fmt, args);
    va_end(args);
}