2012-07-28 15:32:30 +00:00
|
|
|
/* 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
|
2012-07-28 15:32:30 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
2013-12-09 09:32:12 +00:00
|
|
|
#include <stdarg.h>
|
2014-09-12 02:22:39 +00:00
|
|
|
#include <stdio.h>
|
2013-12-09 09:32:12 +00:00
|
|
|
|
2015-01-11 15:16:26 +00:00
|
|
|
#if defined(HAVE_FILE_LOGGER) && defined(RARCH_INTERNAL)
|
2015-03-21 05:02:00 +00:00
|
|
|
#define LOG_FILE (rarch_main_log_file())
|
2012-11-27 21:57:40 +00:00
|
|
|
#else
|
2013-11-06 13:21:12 +00:00
|
|
|
#define LOG_FILE (stderr)
|
2012-11-27 21:57:40 +00:00
|
|
|
#endif
|
2012-11-26 01:46:40 +00:00
|
|
|
|
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)
|
2015-03-21 05:02:00 +00:00
|
|
|
#define RARCH_LOG_VERBOSE (rarch_main_verbosity())
|
2015-01-11 15:16:26 +00:00
|
|
|
#else
|
|
|
|
#define RARCH_LOG_VERBOSE (true)
|
|
|
|
#endif
|
|
|
|
|
2015-03-30 00:28:11 +00:00
|
|
|
#if defined(_XBOX1)
|
|
|
|
#include "logger/xdk1_logger_override.h"
|
|
|
|
#elif defined(RARCH_CONSOLE) && defined(HAVE_LOGGER) && defined(RARCH_INTERNAL)
|
2012-07-28 15:32:30 +00:00
|
|
|
#include <logger_override.h>
|
2015-01-11 15:16:26 +00:00
|
|
|
#elif defined(IOS) && defined(RARCH_INTERNAL)
|
2013-11-26 10:56:07 +00:00
|
|
|
#include "logger/ios_logger_override.h"
|
2015-01-11 15:16:26 +00:00
|
|
|
#elif defined(ANDROID) && defined(HAVE_LOGGER) && defined(RARCH_INTERNAL)
|
2014-06-01 13:53:48 +00:00
|
|
|
#include "logger/android_logger_override.h"
|
2012-07-28 15:32:30 +00:00
|
|
|
#else
|
2015-03-21 05:31:58 +00:00
|
|
|
#include "logger/generic_logger_override.h"
|
2012-07-28 15:32:30 +00:00
|
|
|
#endif
|
2015-01-11 15:16:26 +00:00
|
|
|
|
2013-12-09 09:32:12 +00:00
|
|
|
#endif
|
2013-10-14 19:08:41 +00:00
|
|
|
|