(iOS) Will now log to XCode organizer device console

This commit is contained in:
twinaphex 2013-11-25 15:12:59 +01:00
parent e2259c1016
commit 97cec15dcd
2 changed files with 53 additions and 1 deletions

51
apple/logger_override.h Normal file
View File

@ -0,0 +1,51 @@
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2013 - Hans-Kristian Arntzen
* Copyright (C) 2011-2013 - 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 __APPLE_IOS_LOGGER_H
#define __APPLE_IOS_LOGGER_H
#include <asl.h>
#include <stdarg.h>
static void INTERNAL_LOG(const char *fmt, ...)
{
aslmsg msg = asl_new(ASL_TYPE_MSG);
asl_set(msg, ASL_KEY_READ_UID, "-1");
asl_log(NULL, msg, ASL_LEVEL_NOTICE, fmt);
asl_free(msg);
}
static inline void RARCH_LOG(const char *fmt, ...)
{
INTERNAL_LOG(fmt);
}
static inline void RARCH_LOG_OUTPUT(const char *msg, ...)
{
INTERNAL_LOG(msg);
}
static inline void RARCH_WARN(const char *msg, ...)
{
INTERNAL_LOG(msg);
}
static inline void RARCH_ERR(const char *msg, ...)
{
INTERNAL_LOG(msg);
}
#endif

View File

@ -33,8 +33,9 @@
#if defined(RARCH_CONSOLE) && (defined(HAVE_LOGGER) || defined(_XBOX1))
#include <logger_override.h>
#elif defined(IOS)
#include "apple/logger_override.h"
#else
#if defined(RARCH_DUMMY_LOG) || !defined(RARCH_INTERNAL)
#define RARCH_LOG_VERBOSE (true)
#else