2012-07-28 15:32:30 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2017-03-22 02:09:18 +00:00
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
2017-07-05 01:46:22 +00:00
|
|
|
*
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2015-11-23 11:03:38 +00:00
|
|
|
#ifndef __RARCH_VERBOSITY_H
|
|
|
|
#define __RARCH_VERBOSITY_H
|
2012-07-28 15:32:30 +00:00
|
|
|
|
2015-11-30 03:49:28 +00:00
|
|
|
#include <stdarg.h>
|
2020-03-05 13:49:35 +00:00
|
|
|
#include <stdlib.h>
|
2013-12-09 09:32:12 +00:00
|
|
|
|
2015-06-27 18:39:23 +00:00
|
|
|
#include <boolean.h>
|
2016-06-03 01:22:35 +00:00
|
|
|
#include <retro_common_api.h>
|
2015-06-27 14:14:54 +00:00
|
|
|
|
2016-09-12 14:36:27 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2021-09-01 22:39:09 +00:00
|
|
|
#ifdef ORBIS
|
|
|
|
#include <debugnet.h>
|
|
|
|
#endif
|
|
|
|
|
2016-06-03 01:22:35 +00:00
|
|
|
RETRO_BEGIN_DECLS
|
2015-11-23 11:03:38 +00:00
|
|
|
|
2021-08-03 03:58:39 +00:00
|
|
|
#define FILE_PATH_LOG_DBG "[DEBUG]"
|
2019-09-19 03:50:26 +00:00
|
|
|
#define FILE_PATH_LOG_INFO "[INFO]"
|
|
|
|
#define FILE_PATH_LOG_ERROR "[ERROR]"
|
|
|
|
#define FILE_PATH_LOG_WARN "[WARN]"
|
|
|
|
|
2016-05-31 02:42:04 +00:00
|
|
|
bool verbosity_is_enabled(void);
|
|
|
|
|
|
|
|
void verbosity_enable(void);
|
|
|
|
|
|
|
|
void verbosity_disable(void);
|
|
|
|
|
2019-08-19 23:34:40 +00:00
|
|
|
void verbosity_set_log_level(unsigned level);
|
|
|
|
|
2016-05-31 02:42:04 +00:00
|
|
|
bool *verbosity_get_ptr(void);
|
2015-11-23 11:03:38 +00:00
|
|
|
|
2015-11-23 14:45:02 +00:00
|
|
|
void retro_main_log_file_deinit(void);
|
|
|
|
|
2019-03-21 16:56:24 +00:00
|
|
|
void retro_main_log_file_init(const char *path, bool append);
|
2015-11-23 14:45:02 +00:00
|
|
|
|
2019-03-05 22:34:05 +00:00
|
|
|
bool is_logging_to_file(void);
|
|
|
|
|
2015-11-23 11:03:38 +00:00
|
|
|
#if defined(HAVE_LOGGER)
|
2015-08-29 14:48:53 +00:00
|
|
|
|
|
|
|
void logger_init (void);
|
|
|
|
void logger_shutdown (void);
|
|
|
|
void logger_send (const char *__format,...);
|
|
|
|
void logger_send_v(const char *__format, va_list args);
|
|
|
|
|
|
|
|
#ifdef IS_SALAMANDER
|
|
|
|
|
2021-09-01 22:39:09 +00:00
|
|
|
#ifdef ORBIS
|
|
|
|
#define RARCH_DBG(...) do { \
|
|
|
|
debugNetPrintf(DEBUGNET_DEBUG,"" __VA_ARGS__); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_LOG(...) do { \
|
|
|
|
debugNetPrintf(DEBUGNET_INFO,"" __VA_ARGS__); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_LOG_V(tag, fmt, vp) do { \
|
|
|
|
debugNetPrintf(DEBUGNET_DEBUG,tag,fmt,vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_ERR(...) do { \
|
|
|
|
debugNetPrintf(DEBUGNET_ERROR,"" __VA_ARGS__); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_ERR_V(tag, fmt, vp) do { \
|
|
|
|
debugNetPrintf(DEBUGNET_ERROR,tag,fmt,vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_WARN(...) do { \
|
|
|
|
debugNetPrintf(DEBUGNET_INFO,"" __VA_ARGS__); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_WARN_V(tag, fmt, vp) do { \
|
|
|
|
debugNetPrintf(DEBUGNET_DEBUG,tag,fmt,vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_LOG_OUTPUT(...) do { \
|
|
|
|
debugNetPrintf(DEBUGNET_INFO,"" __VA_ARGS__); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_LOG_OUTPUT_V(tag, fmt, vp) do { \
|
|
|
|
debugNetPrintf(DEBUGNET_INFO,tag,fmt,vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#else
|
2021-02-03 12:49:07 +00:00
|
|
|
#define RARCH_DBG(...) do { \
|
|
|
|
logger_send("RetroArch Salamander: " __VA_ARGS__); \
|
|
|
|
} while (0)
|
|
|
|
|
2015-08-29 14:48:53 +00:00
|
|
|
#define RARCH_LOG(...) do { \
|
|
|
|
logger_send("RetroArch Salamander: " __VA_ARGS__); \
|
2020-06-26 18:00:19 +00:00
|
|
|
} while (0)
|
2015-08-29 14:48:53 +00:00
|
|
|
|
|
|
|
#define RARCH_LOG_V(tag, fmt, vp) do { \
|
|
|
|
logger_send("RetroArch Salamander: " tag); \
|
|
|
|
logger_send_v(fmt, vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_LOG_OUTPUT(...) do { \
|
2017-07-05 01:46:22 +00:00
|
|
|
logger_send("[OUTPUT] " __VA_ARGS__); \
|
2020-06-26 18:00:19 +00:00
|
|
|
} while (0)
|
2015-08-29 14:48:53 +00:00
|
|
|
|
|
|
|
#define RARCH_LOG_OUTPUT_V(tag, fmt, vp) do { \
|
2017-07-05 01:46:22 +00:00
|
|
|
logger_send("[OUTPUT] " tag); \
|
2015-08-29 14:48:53 +00:00
|
|
|
logger_send_v(fmt, vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_ERR(...) do { \
|
2017-07-05 01:46:22 +00:00
|
|
|
logger_send("[ERROR] " __VA_ARGS__); \
|
2020-06-26 18:00:19 +00:00
|
|
|
} while (0)
|
2015-08-29 14:48:53 +00:00
|
|
|
|
|
|
|
#define RARCH_ERR_V(tag, fmt, vp) do { \
|
2017-07-05 01:46:22 +00:00
|
|
|
logger_send("[ERROR] " tag); \
|
2015-08-29 14:48:53 +00:00
|
|
|
logger_send_v(fmt, vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_WARN(...) do { \
|
2017-07-05 01:46:22 +00:00
|
|
|
logger_send("[WARN] " __VA_ARGS__); \
|
2020-06-26 18:00:19 +00:00
|
|
|
} while (0)
|
2015-08-29 14:48:53 +00:00
|
|
|
|
|
|
|
#define RARCH_WARN_V(tag, fmt, vp) do { \
|
2017-07-05 01:46:22 +00:00
|
|
|
logger_send("[WARN] " tag); \
|
2015-08-29 14:48:53 +00:00
|
|
|
logger_send_v(fmt, vp); \
|
|
|
|
} while (0)
|
2021-09-01 22:39:09 +00:00
|
|
|
#endif
|
2018-03-30 06:33:31 +00:00
|
|
|
#else /* IS_SALAMANDER */
|
2015-08-29 14:48:53 +00:00
|
|
|
|
2021-09-01 22:39:09 +00:00
|
|
|
#ifdef ORBIS
|
|
|
|
#define RARCH_DBG(...) do { \
|
|
|
|
debugNetPrintf(DEBUGNET_DEBUG,"" __VA_ARGS__); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_LOG(...) do { \
|
|
|
|
debugNetPrintf(DEBUGNET_INFO,"" __VA_ARGS__); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_LOG_V(tag, fmt, vp) do { \
|
|
|
|
debugNetPrintf(DEBUGNET_DEBUG,tag,fmt,vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_ERR(...) do { \
|
|
|
|
debugNetPrintf(DEBUGNET_ERROR,"" __VA_ARGS__); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_ERR_V(tag, fmt, vp) do { \
|
|
|
|
debugNetPrintf(DEBUGNET_ERROR,tag,fmt,vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_WARN(...) do { \
|
|
|
|
debugNetPrintf(DEBUGNET_INFO,"" __VA_ARGS__); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_WARN_V(tag, fmt, vp) do { \
|
|
|
|
debugNetPrintf(DEBUGNET_DEBUG,tag,fmt,vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_LOG_OUTPUT(...) do { \
|
|
|
|
debugNetPrintf(DEBUGNET_INFO,"" __VA_ARGS__); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_LOG_OUTPUT_V(tag, fmt, vp) do { \
|
|
|
|
debugNetPrintf(DEBUGNET_INFO,tag,fmt,vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#else
|
2021-02-03 12:49:07 +00:00
|
|
|
#define RARCH_DBG(...) do { \
|
|
|
|
logger_send("" __VA_ARGS__); \
|
|
|
|
} while (0)
|
|
|
|
|
2015-08-29 14:48:53 +00:00
|
|
|
#define RARCH_LOG(...) do { \
|
2017-07-05 01:46:22 +00:00
|
|
|
logger_send("" __VA_ARGS__); \
|
2020-06-26 18:00:19 +00:00
|
|
|
} while (0)
|
2015-08-29 14:48:53 +00:00
|
|
|
|
|
|
|
#define RARCH_LOG_V(tag, fmt, vp) do { \
|
2017-07-05 01:46:22 +00:00
|
|
|
logger_send("" tag); \
|
2015-08-29 14:48:53 +00:00
|
|
|
logger_send_v(fmt, vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_ERR(...) do { \
|
2017-07-05 01:46:22 +00:00
|
|
|
logger_send("[ERROR] " __VA_ARGS__); \
|
2020-06-26 18:00:19 +00:00
|
|
|
} while (0)
|
2015-08-29 14:48:53 +00:00
|
|
|
|
|
|
|
#define RARCH_ERR_V(tag, fmt, vp) do { \
|
2017-07-05 01:46:22 +00:00
|
|
|
logger_send("[ERROR] " tag); \
|
2015-08-29 14:48:53 +00:00
|
|
|
logger_send_v(fmt, vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_WARN(...) do { \
|
2017-07-05 01:46:22 +00:00
|
|
|
logger_send("[WARN] " __VA_ARGS__); \
|
2020-06-26 18:00:19 +00:00
|
|
|
} while (0)
|
2015-08-29 14:48:53 +00:00
|
|
|
|
|
|
|
#define RARCH_WARN_V(tag, fmt, vp) do { \
|
2017-07-05 01:46:22 +00:00
|
|
|
logger_send("[WARN] :: " tag); \
|
2015-08-29 14:48:53 +00:00
|
|
|
logger_send_v(fmt, vp); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define RARCH_LOG_OUTPUT(...) do { \
|
2017-07-05 01:46:22 +00:00
|
|
|
logger_send("[OUTPUT] " __VA_ARGS__); \
|
2020-06-26 18:00:19 +00:00
|
|
|
} while (0)
|
2015-08-29 14:48:53 +00:00
|
|
|
|
|
|
|
#define RARCH_LOG_OUTPUT_V(tag, fmt, vp) do { \
|
2017-07-05 01:46:22 +00:00
|
|
|
logger_send("[OUTPUT] " tag); \
|
2015-08-29 14:48:53 +00:00
|
|
|
logger_send_v(fmt, vp); \
|
|
|
|
} while (0)
|
|
|
|
#endif
|
2021-09-01 22:39:09 +00:00
|
|
|
#endif
|
2020-06-26 18:00:19 +00:00
|
|
|
#define RARCH_LOG_BUFFER(...) do { } while (0)
|
2018-03-30 06:33:31 +00:00
|
|
|
|
|
|
|
#else /* HAVE_LOGGER */
|
2015-11-29 02:03:39 +00:00
|
|
|
void RARCH_LOG_V(const char *tag, const char *fmt, va_list ap);
|
2021-02-03 12:49:07 +00:00
|
|
|
void RARCH_DBG(const char *fmt, ...);
|
2015-11-29 02:03:39 +00:00
|
|
|
void RARCH_LOG(const char *fmt, ...);
|
2018-03-30 06:33:31 +00:00
|
|
|
void RARCH_LOG_BUFFER(uint8_t *buffer, size_t size);
|
2015-11-29 02:03:39 +00:00
|
|
|
void RARCH_LOG_OUTPUT(const char *msg, ...);
|
|
|
|
void RARCH_WARN(const char *fmt, ...);
|
|
|
|
void RARCH_ERR(const char *fmt, ...);
|
2018-01-17 05:28:26 +00:00
|
|
|
|
2018-01-17 05:47:18 +00:00
|
|
|
#define RARCH_LOG_OUTPUT_V RARCH_LOG_V
|
|
|
|
#define RARCH_WARN_V RARCH_LOG_V
|
|
|
|
#define RARCH_ERR_V RARCH_LOG_V
|
2018-03-30 06:33:31 +00:00
|
|
|
#endif /* HAVE_LOGGER */
|
2015-01-11 15:16:26 +00:00
|
|
|
|
2020-01-30 18:22:57 +00:00
|
|
|
void rarch_log_file_init(
|
|
|
|
bool log_to_file,
|
|
|
|
bool log_to_file_timestamp,
|
|
|
|
const char *log_dir);
|
|
|
|
|
|
|
|
void rarch_log_file_deinit(void);
|
|
|
|
|
|
|
|
void rarch_log_file_set_override(const char *path);
|
|
|
|
|
|
|
|
|
2016-06-03 01:22:35 +00:00
|
|
|
RETRO_END_DECLS
|
2013-10-14 19:08:41 +00:00
|
|
|
|
2015-11-23 11:03:38 +00:00
|
|
|
#endif
|