2020-06-10 20:04:09 +02:00
|
|
|
/******************************************************************************\
|
|
|
|
* Copyright (c) 2020
|
|
|
|
*
|
|
|
|
* Author(s):
|
|
|
|
* Simon Tomlinson
|
|
|
|
*
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* This program 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
|
|
|
|
* Foundation; either version 2 of the License, or (at your option) any later
|
|
|
|
* version.
|
|
|
|
*
|
|
|
|
* This program 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
|
|
|
|
* this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*
|
|
|
|
\******************************************************************************/
|
2020-05-11 08:36:46 +02:00
|
|
|
|
2020-06-10 20:04:09 +02:00
|
|
|
const char*const applicationName = "Jamulus";
|
|
|
|
|
|
|
|
#ifdef ANDROIDDEBUG // Set in my myapp.pro file for android builds
|
2020-05-11 08:36:46 +02:00
|
|
|
#include <android/log.h>
|
|
|
|
#include <QString>
|
|
|
|
#include <QEvent>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <string>
|
|
|
|
|
2020-06-10 20:04:09 +02:00
|
|
|
void myMessageHandler ( QtMsgType type, const QMessageLogContext& context, const QString& msg )
|
2020-05-11 08:36:46 +02:00
|
|
|
{
|
2020-06-10 20:04:09 +02:00
|
|
|
QString report = msg;
|
|
|
|
|
|
|
|
if ( context.file && !QString ( context.file ).isEmpty() )
|
|
|
|
{
|
|
|
|
report += " in file ";
|
|
|
|
report += QString ( context.file );
|
|
|
|
report += " line ";
|
|
|
|
report += QString::number ( context.line );
|
2020-05-11 08:36:46 +02:00
|
|
|
}
|
2020-06-10 20:04:09 +02:00
|
|
|
|
|
|
|
if ( context.function && !QString ( context.function ).isEmpty() )
|
|
|
|
{
|
|
|
|
report +=+" function ";
|
|
|
|
report += QString(context.function);
|
2020-05-11 08:36:46 +02:00
|
|
|
}
|
2020-06-10 20:04:09 +02:00
|
|
|
|
|
|
|
const char*const local = report.toLocal8Bit().constData();
|
|
|
|
|
|
|
|
switch ( type )
|
|
|
|
{
|
2020-05-11 08:36:46 +02:00
|
|
|
case QtDebugMsg:
|
2020-06-10 20:04:09 +02:00
|
|
|
__android_log_write ( ANDROID_LOG_DEBUG, applicationName, local) ;
|
2020-05-11 08:36:46 +02:00
|
|
|
break;
|
2020-06-10 20:04:09 +02:00
|
|
|
|
2020-05-11 08:36:46 +02:00
|
|
|
case QtInfoMsg:
|
2020-06-10 20:04:09 +02:00
|
|
|
__android_log_write ( ANDROID_LOG_INFO, applicationName, local );
|
2020-05-11 08:36:46 +02:00
|
|
|
break;
|
2020-06-10 20:04:09 +02:00
|
|
|
|
2020-05-11 08:36:46 +02:00
|
|
|
case QtWarningMsg:
|
2020-06-10 20:04:09 +02:00
|
|
|
__android_log_write ( ANDROID_LOG_WARN, applicationName, local );
|
2020-05-11 08:36:46 +02:00
|
|
|
break;
|
2020-06-10 20:04:09 +02:00
|
|
|
|
2020-05-11 08:36:46 +02:00
|
|
|
case QtCriticalMsg:
|
2020-06-10 20:04:09 +02:00
|
|
|
__android_log_write ( ANDROID_LOG_ERROR, applicationName, local );
|
2020-05-11 08:36:46 +02:00
|
|
|
break;
|
2020-06-10 20:04:09 +02:00
|
|
|
|
2020-05-11 08:36:46 +02:00
|
|
|
case QtFatalMsg:
|
|
|
|
default:
|
2020-06-10 20:04:09 +02:00
|
|
|
__android_log_write ( ANDROID_LOG_FATAL, applicationName, local );
|
2020-05-11 08:36:46 +02:00
|
|
|
abort();
|
2020-06-10 20:04:09 +02:00
|
|
|
break;
|
2020-05-11 08:36:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|