mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-23 00:17:42 +00:00
11 lines
359 B
C++
11 lines
359 B
C++
#pragma once
|
|
|
|
#include <cerrno>
|
|
#include <cstdarg>
|
|
|
|
void LOGD(const char *fmt, ...) __printflike(1, 2);
|
|
void LOGI(const char *fmt, ...) __printflike(1, 2);
|
|
void LOGW(const char *fmt, ...) __printflike(1, 2);
|
|
void LOGE(const char *fmt, ...) __printflike(1, 2);
|
|
#define PLOGE(fmt, args...) LOGE(fmt " failed with %d: %s\n", ##args, errno, std::strerror(errno))
|