mount: don't complain about ability to create mount dirs
authorRobert Swiecki <robert@swiecki.net>
Tue, 24 Oct 2017 23:45:39 +0000 (01:45 +0200)
committerRobert Swiecki <robert@swiecki.net>
Tue, 24 Oct 2017 23:45:39 +0000 (01:45 +0200)
mount.c

diff --git a/mount.c b/mount.c
index 1269f7516e900e7959bc0b0ea8144f439a778967..eabfc8da4b0b10645f6c3449d2eb0001170fc829 100644 (file)
--- a/mount.c
+++ b/mount.c
@@ -255,7 +255,7 @@ static bool mountRemountRO(struct mounts_t* mpt)
 static bool mountMkdirAndTest(const char* dir)
 {
        if (mkdir(dir, 0755) == -1 && errno != EEXIST) {
-               PLOG_W("Couldn't create '%s' directory", dir);
+               PLOG_D("Couldn't create '%s' directory", dir);
                return false;
        }
        if (access(dir, R_OK) == -1) {