universal7885: debug_daemon: remove liblog deps

Signed-off-by: roynatech2544 <whiteshell2544@naver.com>
This commit is contained in:
roynatech2544 2021-12-14 15:28:58 +09:00
commit 3a9920df46
No known key found for this signature in database
GPG key ID: 9675C32163D88D30
3 changed files with 0 additions and 11 deletions

View file

@ -16,9 +16,7 @@
#define CHECK_LOGCAT "/data/debug/logcat"
#define WRITE_LOGCAT "/data/debug/logs/logcat.txt"
#define LOG_TAG "DebugLogcatDaemon"
#include <log/log.h>
#include <fstream>
#include <iostream>
@ -26,10 +24,8 @@ bool check_data_logcat() {
std::ifstream datafile(CHECK_LOGCAT);
if (datafile.good()) {
datafile.close();
ALOGI("Found %s, logging...", CHECK_LOGCAT);
return true;
} else {
ALOGW("Couldn't find %s, not logging...", CHECK_LOGCAT);
return false;
}
}