Standardize log levels used by logging statements across the project
[babeltrace.git] / src / common / common.c
index 4aa8fcd2a70e3ec9a890182fbf7f89350c97936f..3c48e84f31bc6d8b1a6209441b7e4e6817972ef8 100644 (file)
@@ -169,8 +169,8 @@ char *bt_common_get_home_plugin_path(void)
        length = strlen(home_dir) + strlen(HOME_PLUGIN_SUBPATH) + 1;
 
        if (length >= PATH_MAX) {
-               BT_LOGW("Home directory path is too long: length=%zu",
-                       length);
+               BT_LOGW("Home directory path is too long: "
+                       "length=%zu, max-length=%u", length, PATH_MAX);
                goto end;
        }
 
This page took 0.024199 seconds and 4 git commands to generate.