summaryrefslogtreecommitdiffstats
path: root/lib/libUPnP/Neptune/Source/System/Android/NptAndroidDebug.cpp
blob: 378ee45eb38be733d94a2a1f6d609be6686b808f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*****************************************************************
|
|      File: NptStdcDebug.c
|
|      Atomix - Debug Support: Android Implementation
|
|      (c) 2002-2009 Gilles Boccon-Gibod
|      Author: Gilles Boccon-Gibod (bok@bok.net)
|
 ****************************************************************/

/*----------------------------------------------------------------------
|       includes
+---------------------------------------------------------------------*/
#include <android/log.h>
#include <stdio.h>

#include "NptConfig.h"
#include "NptDefs.h"
#include "NptTypes.h"
#include "NptDebug.h"

/*----------------------------------------------------------------------
|       NPT_DebugOuput
+---------------------------------------------------------------------*/
void
NPT_DebugOutput(const char* message)
{
    __android_log_write(ANDROID_LOG_DEBUG, "Neptune", message);
    printf("%s", message);
}