Cleanup: lock file already taken is error, not warning
[lttng-tools.git] / src / common / utils.c
index 3428d312d6ee8a2c562936284bf86690229be56f..7f91dcb8151ea6ae6083668e78df123f73521758 100644 (file)
@@ -516,7 +516,7 @@ int utils_create_lock_file(const char *filepath)
         */
        ret = flock(fd, LOCK_EX | LOCK_NB);
        if (ret) {
-               WARN("Could not get lock file %s, another instance is running.",
+               ERR("Could not get lock file %s, another instance is running.",
                        filepath);
                if (close(fd)) {
                        PERROR("close lock file");
This page took 0.025091 seconds and 5 git commands to generate.