Commit 87359450 authored by Marc Vef's avatar Marc Vef
Browse files

proxy client verbosity decrease

parent 5eecc553
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -74,7 +74,7 @@ namespace gkfs::hook {
int
hook_openat(int dirfd, const char* cpath, int flags, mode_t mode) {

    LOG(INFO, "{}() called with fd: {}, path: \"{}\", flags: {}, mode: {}",
    LOG(DEBUG, "{}() called with fd: {}, path: \"{}\", flags: {}, mode: {}",
        __func__, dirfd, cpath, flags, mode);

    std::string normalized_path{};
+1 −1
Original line number Diff line number Diff line
@@ -105,7 +105,7 @@ normalize(const string& path) {
        slash_idx.push(normalized.size() - 1);
        normalized.append(path, start, comp_size);
    }
    LOG(INFO, "path: '{}', normalized: '{}'", path, normalized);
    LOG(DEBUG, "path: '{}', normalized: '{}'", path, normalized);
    return normalized;
}