mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 16:39:43 +00:00
61 lines
1.8 KiB
C
61 lines
1.8 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
* 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>
|
|
|
|
#if defined(HAVE_FILE_LOGGER) && defined(RARCH_INTERNAL) && !defined(IS_JOYCONFIG)
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
FILE *rarch_main_log_file(void);
|
|
#define LOG_FILE (rarch_main_log_file())
|
|
#else
|
|
#define LOG_FILE (stderr)
|
|
#endif
|
|
|
|
#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())
|
|
#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>
|
|
#elif defined(IOS) && defined(RARCH_INTERNAL)
|
|
#include "logger/ios_logger_override.h"
|
|
#elif defined(ANDROID) && defined(HAVE_LOGGER) && defined(RARCH_INTERNAL)
|
|
#include "logger/android_logger_override.h"
|
|
#else
|
|
#include "logger/generic_logger_override.h"
|
|
#endif
|
|
|
|
#endif
|
|
|