sr_resourcepaths_get(): Drop confusing log message.

This is not really needed and can sometimes confuse users.
This commit is contained in:
Uwe Hermann 2018-09-03 22:18:28 +02:00
parent 2efb3cd700
commit 3ad0308c55
1 changed files with 1 additions and 3 deletions

View File

@ -55,9 +55,7 @@ SR_API GSList *sr_resourcepaths_get(int res_type)
subdir = "sigrok-firmware";
env = g_getenv("SIGROK_FIRMWARE_DIR");
if (!env)
sr_dbg("SIGROK_FIRMWARE_DIR environment variable not set, ignoring.");
else
if (env)
l = g_slist_append(l, g_strdup(env));
}