RetroArch/retroarch_logger.h

57 lines
1.7 KiB
C
Raw Normal View History

/* RetroArch - A frontend for libretro.
2014-01-01 00:50:59 +00:00
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2015-01-07 16:46:50 +00:00
* Copyright (C) 2011-2015 - Daniel De Matteis
*
* RetroArch 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 Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch 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 RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __RARCH_LOGGER_H
#define __RARCH_LOGGER_H
#include <stdarg.h>
#include <stdio.h>
2015-01-11 15:16:26 +00:00
#if defined(HAVE_FILE_LOGGER) && defined(RARCH_INTERNAL)
#define LOG_FILE (rarch_main_log_file())
#else
2013-11-06 13:21:12 +00:00
#define LOG_FILE (stderr)
#endif
2015-01-11 15:16:26 +00:00
#if defined(IS_SALAMANDER)
#define PROGRAM_NAME "RetroArch Salamander"
#elif defined(RARCH_INTERNAL)
#define PROGRAM_NAME "RetroArch"
#else
#define PROGRAM_NAME "N/A"
#endif
#if defined(RARCH_INTERNAL)
#define RARCH_LOG_VERBOSE (rarch_main_verbosity())
2015-01-11 15:16:26 +00:00
#else
#define RARCH_LOG_VERBOSE (true)
#endif
#if defined(_XBOX1)
#include "logger/xdk1_logger_override.h"
#elif defined(RARCH_CONSOLE) && defined(HAVE_LOGGER) && defined(RARCH_INTERNAL)
#include <logger_override.h>
2015-01-11 15:16:26 +00:00
#elif defined(IOS) && defined(RARCH_INTERNAL)
#include "logger/ios_logger_override.h"
2015-01-11 15:16:26 +00:00
#elif defined(ANDROID) && defined(HAVE_LOGGER) && defined(RARCH_INTERNAL)
#include "logger/android_logger_override.h"
#else
2015-03-21 05:31:58 +00:00
#include "logger/generic_logger_override.h"
#endif
2015-01-11 15:16:26 +00:00
#endif
2013-10-14 19:08:41 +00:00