]> git.ipfire.org Git - pakfire.git/commitdiff
deps: Remove some logging
authorMichael Tremer <michael.tremer@ipfire.org>
Fri, 25 Oct 2024 14:37:27 +0000 (14:37 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Fri, 25 Oct 2024 14:37:27 +0000 (14:37 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/libpakfire/dependencies.c

index 92811fa435e6fd349e23af1c526a80c04ac00086..ab37a17a94bb61b25037c52b12e83199c1109731 100644 (file)
@@ -353,10 +353,8 @@ Id pakfire_str2dep(struct pakfire* pakfire, const char* dep) {
                id = pakfire_parse_dep(pakfire, &s);
 
        // Return nothing if we could not parse the entire string
-       if (id && *s) {
-               PAKFIRE_DEBUG(pakfire, "Invalid dependency: %s\n", dep);
+       if (id && *s)
                id = ID_NULL;
-       }
 
        return id;
 }