Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_hardware_samsung_slsi-linaro_graphics
/
4083edb9ae43314db6c727b254e9fb5db06d47dd
/
.
/
base
/
giantmscl
/
log.h
blob: dcaf500d5307aebc90db767ccfc0e04f440ea063 [
file
] [
log
] [
blame
]
#ifndef
_LOG_H_
#define
_LOG_H_
#include
<cerrno>
#include
<cstring>
#include
<log/log.h>
#ifndef
ALOGERR
#define
ALOGERR
(
fmt
,
args
...)
((
void
)
ALOG
(
LOG_ERROR
,
LOG_TAG
,
fmt
" [%s]"
,
##args, strerror(errno)))
#endif
#endif
// _LOG_H_