Split off logger code to separate file

This commit is contained in:
twinaphex 2015-03-21 06:31:58 +01:00
parent fc09ad68be
commit 75b035026f
2 changed files with 87 additions and 67 deletions

View File

@ -0,0 +1,86 @@
/* 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 __GENERIC_LOGGER_H
#define __GENERIC_LOGGER_H
#ifndef RARCH_LOG
#undef RARCH_LOG_V
#define RARCH_LOG(...) do { \
if (RARCH_LOG_VERBOSE) \
{ \
fprintf(LOG_FILE, "%s: %s: ", PROGRAM_NAME, __FUNCTION__); \
fprintf(LOG_FILE, __VA_ARGS__); \
fflush(LOG_FILE); \
} \
} while (0)
#define RARCH_LOG_V(tag, fmt, vp) do { \
if (RARCH_LOG_VERBOSE) \
{ \
fprintf(LOG_FILE, "%s: %s: ", PROGRAM_NAME, __FUNCTION__); \
fprintf(LOG_FILE, tag);\
vfprintf(LOG_FILE, fmt, vp); \
fflush(LOG_FILE); \
} \
} while (0)
#endif
#ifndef RARCH_LOG_OUTPUT
#undef RARCH_LOG_OUTPUT_V
#define RARCH_LOG_OUTPUT(...) do { \
fprintf(LOG_FILE, "%s: ", __FUNCTION__); \
fprintf(LOG_FILE, __VA_ARGS__); \
fflush(LOG_FILE); \
} while (0)
#define RARCH_LOG_OUTPUT_V(tag, fmt, vp) do { \
fprintf(LOG_FILE, "%s: %s: ", PROGRAM_NAME, __FUNCTION__); \
fprintf(LOG_FILE, tag); \
vfprintf(LOG_FILE, fmt, vp); \
fflush(LOG_FILE); \
} while (0)
#endif
#ifndef RARCH_ERR
#undef RARCH_ERR_V
#define RARCH_ERR(...) do { \
fprintf(LOG_FILE, "%s [ERROR] :: %s :: ", PROGRAM_NAME, __FUNCTION__); \
fprintf(LOG_FILE, __VA_ARGS__); \
fflush(LOG_FILE); \
} while (0)
#define RARCH_ERR_V(tag, fmt, vp) do { \
fprintf(LOG_FILE, "%s [ERROR] :: %s :: ", PROGRAM_NAME, __FUNCTION__); \
fprintf(LOG_FILE, tag); \
vfprintf(LOG_FILE, fmt, vp); \
fflush(LOG_FILE); \
} while (0)
#endif
#ifndef RARCH_WARN
#undef RARCH_WARN_V
#define RARCH_WARN(...) do { \
fprintf(LOG_FILE, "%s [WARN] :: %s :: ", PROGRAM_NAME, __FUNCTION__); \
fprintf(LOG_FILE, __VA_ARGS__); \
fflush(LOG_FILE); \
} while (0)
#define RARCH_WARN_V(tag, fmt, vp) do { \
fprintf(LOG_FILE, "%s [WARN] :: %s :: ", PROGRAM_NAME, __FUNCTION__); \
fprintf(LOG_FILE, tag); \
vfprintf(LOG_FILE, fmt, vp); \
fflush(LOG_FILE); \
} while (0)
#endif
#endif

View File

@ -49,73 +49,7 @@
#elif defined(ANDROID) && defined(HAVE_LOGGER) && defined(RARCH_INTERNAL)
#include "logger/android_logger_override.h"
#else
#ifndef RARCH_LOG
#undef RARCH_LOG_V
#define RARCH_LOG(...) do { \
if (RARCH_LOG_VERBOSE) \
{ \
fprintf(LOG_FILE, "%s: %s: ", PROGRAM_NAME, __FUNCTION__); \
fprintf(LOG_FILE, __VA_ARGS__); \
fflush(LOG_FILE); \
} \
} while (0)
#define RARCH_LOG_V(tag, fmt, vp) do { \
if (RARCH_LOG_VERBOSE) \
{ \
fprintf(LOG_FILE, "%s: %s: ", PROGRAM_NAME, __FUNCTION__); \
fprintf(LOG_FILE, tag);\
vfprintf(LOG_FILE, fmt, vp); \
fflush(LOG_FILE); \
} \
} while (0)
#endif
#ifndef RARCH_LOG_OUTPUT
#undef RARCH_LOG_OUTPUT_V
#define RARCH_LOG_OUTPUT(...) do { \
fprintf(LOG_FILE, "%s: ", __FUNCTION__); \
fprintf(LOG_FILE, __VA_ARGS__); \
fflush(LOG_FILE); \
} while (0)
#define RARCH_LOG_OUTPUT_V(tag, fmt, vp) do { \
fprintf(LOG_FILE, "%s: %s: ", PROGRAM_NAME, __FUNCTION__); \
fprintf(LOG_FILE, tag); \
vfprintf(LOG_FILE, fmt, vp); \
fflush(LOG_FILE); \
} while (0)
#endif
#ifndef RARCH_ERR
#undef RARCH_ERR_V
#define RARCH_ERR(...) do { \
fprintf(LOG_FILE, "%s [ERROR] :: %s :: ", PROGRAM_NAME, __FUNCTION__); \
fprintf(LOG_FILE, __VA_ARGS__); \
fflush(LOG_FILE); \
} while (0)
#define RARCH_ERR_V(tag, fmt, vp) do { \
fprintf(LOG_FILE, "%s [ERROR] :: %s :: ", PROGRAM_NAME, __FUNCTION__); \
fprintf(LOG_FILE, tag); \
vfprintf(LOG_FILE, fmt, vp); \
fflush(LOG_FILE); \
} while (0)
#endif
#ifndef RARCH_WARN
#undef RARCH_WARN_V
#define RARCH_WARN(...) do { \
fprintf(LOG_FILE, "%s [WARN] :: %s :: ", PROGRAM_NAME, __FUNCTION__); \
fprintf(LOG_FILE, __VA_ARGS__); \
fflush(LOG_FILE); \
} while (0)
#define RARCH_WARN_V(tag, fmt, vp) do { \
fprintf(LOG_FILE, "%s [WARN] :: %s :: ", PROGRAM_NAME, __FUNCTION__); \
fprintf(LOG_FILE, tag); \
vfprintf(LOG_FILE, fmt, vp); \
fflush(LOG_FILE); \
} while (0)
#endif
#include "logger/generic_logger_override.h"
#endif
#endif