mirror of https://github.com/buggins/dlangui.git
48 lines
1.6 KiB
D
48 lines
1.6 KiB
D
/* dstep -I/path/to/ndk-r9d/toolchains/llvm-3.4/prebuilt/linux-x86/lib/clang/3.4/include /path/to/ndk-r9d/platforms/android-9/arch-x86/usr/include/android/log.h -o log.d*/
|
|
|
|
module android.log;
|
|
|
|
import core.stdc.stdarg;
|
|
|
|
version (Android):
|
|
extern (C):
|
|
@system:
|
|
nothrow:
|
|
@nogc:
|
|
|
|
enum android_LogPriority
|
|
{
|
|
ANDROID_LOG_UNKNOWN,
|
|
ANDROID_LOG_DEFAULT,
|
|
ANDROID_LOG_VERBOSE,
|
|
ANDROID_LOG_DEBUG,
|
|
ANDROID_LOG_INFO,
|
|
ANDROID_LOG_WARN,
|
|
ANDROID_LOG_ERROR,
|
|
ANDROID_LOG_FATAL,
|
|
ANDROID_LOG_SILENT
|
|
}
|
|
|
|
int __android_log_write(int prio, const(char)* tag, const(char)* text);
|
|
int __android_log_print(int prio, const(char)* tag, const(char)* fmt, ...);
|
|
int __android_log_vprint(int prio, const(char)* tag, const(char)* fmt, va_list ap);
|
|
void __android_log_assert(const(char)* cond, const(char)* tag, const(char)* fmt, ...);
|
|
|
|
__gshared const(char) * ANDROID_LOG_TAG = "dlangui";
|
|
|
|
void LOGI(S...)(const(char) * fmt, S args) {
|
|
__android_log_print(android_LogPriority.ANDROID_LOG_INFO, ANDROID_LOG_TAG, fmt, args);
|
|
}
|
|
void LOGE(S...)(const(char) * fmt, S args) {
|
|
__android_log_print(android_LogPriority.ANDROID_LOG_ERROR, ANDROID_LOG_TAG, fmt, args);
|
|
}
|
|
void LOGW(S...)(const(char) * fmt, S args) {
|
|
__android_log_print(android_LogPriority.ANDROID_LOG_WARN, ANDROID_LOG_TAG, fmt, args);
|
|
}
|
|
void LOGD(S...)(const(char) * fmt, S args) {
|
|
__android_log_print(android_LogPriority.ANDROID_LOG_DEBUG, ANDROID_LOG_TAG, fmt, args);
|
|
}
|
|
void LOGV(S...)(const(char) * fmt, S args) {
|
|
debug __android_log_print(android_LogPriority.ANDROID_LOG_VERBOSE, ANDROID_LOG_TAG, fmt, args);
|
|
}
|