OpenRCT2/src/openrct2/diagnostic.c

79 lines
2.1 KiB
C
Raw Normal View History

#pragma region Copyright (c) 2014-2017 OpenRCT2 Developers
/*****************************************************************************
* OpenRCT2, an open source clone of Roller Coaster Tycoon 2.
*
* OpenRCT2 is the work of many authors, a full list can be found in contributors.md
* For more information, visit https://github.com/OpenRCT2/OpenRCT2
*
* OpenRCT2 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.
*
* A full copy of the GNU General Public License can be found in licence.txt
*****************************************************************************/
#pragma endregion
#include <assert.h>
#include <stdarg.h>
#include <stdio.h>
#include "diagnostic.h"
static bool _log_location_enabled = true;
bool _log_levels[DIAGNOSTIC_LEVEL_COUNT] = { true, true, true, false, true };
const char * _level_strings[] = {
"FATAL",
"ERROR",
"WARNING",
"VERBOSE",
"INFO"
};
void diagnostic_log(DiagnosticLevel diagnosticLevel, const char *format, ...)
{
FILE *stream;
va_list args;
if (!_log_levels[diagnosticLevel])
return;
stream = stderr;
// Level
fprintf(stream, "%s: ", _level_strings[diagnosticLevel]);
// Message
va_start(args, format);
vfprintf(stream, format, args);
va_end(args);
// Line terminator
fprintf(stream, "\n");
}
void diagnostic_log_with_location(DiagnosticLevel diagnosticLevel, const char *file, const char *function, sint32 line, const char *format, ...)
{
FILE *stream;
va_list args;
if (!_log_levels[diagnosticLevel])
return;
stream = stderr;
// Level and source code information
if (_log_location_enabled)
fprintf(stream, "%s[%s:%d (%s)]: ", _level_strings[diagnosticLevel], file, line, function);
else
fprintf(stream, "%s: ", _level_strings[diagnosticLevel]);
// Message
va_start(args, format);
vfprintf(stream, format, args);
va_end(args);
// Line terminator
fprintf(stream, "\n");
}