summaryrefslogtreecommitdiffstats
path: root/nexus/Controller.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'nexus/Controller.cpp')
-rw-r--r--nexus/Controller.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/nexus/Controller.cpp b/nexus/Controller.cpp
index f6a2436..4f4c473 100644
--- a/nexus/Controller.cpp
+++ b/nexus/Controller.cpp
@@ -86,7 +86,7 @@ int Controller::unloadKernelModule(const char *modtag) {
}
if (rc != 0) {
- LOGW("Unable to unload kernel driver '%s' (%s)", modtag,
+ ALOGW("Unable to unload kernel driver '%s' (%s)", modtag,
strerror(errno));
}
return rc;
@@ -105,7 +105,7 @@ bool Controller::isKernelModuleLoaded(const char *modtag) {
char *endTag = strchr(line, ' ');
if (!endTag) {
- LOGW("Unable to find tag for line '%s'", line);
+ ALOGW("Unable to find tag for line '%s'", line);
continue;
}
if (!strncmp(line, modtag, (endTag - line))) {