We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2ea91cf + bdb5233 commit b371af9Copy full SHA for b371af9
adb/client/auth.cpp
@@ -400,12 +400,12 @@ static void adb_auth_inotify_init(const std::set<std::string>& paths) {
400
for (const std::string& path : paths) {
401
int wd = inotify_add_watch(infd, path.c_str(), IN_CREATE | IN_MOVED_TO);
402
if (wd < 0) {
403
- PLOG(ERROR) << "failed to inotify_add_watch on path '" << path;
+ PLOG(ERROR) << "failed to inotify_add_watch on path '" << path << "'";
404
continue;
405
}
406
407
g_monitored_paths[wd] = path;
408
- LOG(INFO) << "watch descriptor " << wd << " registered for " << path;
+ LOG(INFO) << "watch descriptor " << wd << " registered for '" << path << "'";
409
410
411
fdevent* event = fdevent_create(infd, adb_auth_inotify_update, nullptr);
0 commit comments