]> git.decadent.org.uk Git - dak.git/commitdiff
more useful logging of added overrides
authorJoerg Jaspert <joerg@debian.org>
Sun, 15 May 2011 12:59:22 +0000 (14:59 +0200)
committerJoerg Jaspert <joerg@debian.org>
Sun, 15 May 2011 12:59:22 +0000 (14:59 +0200)
Signed-off-by: Joerg Jaspert <joerg@debian.org>
dak/process_new.py

index 5899a9ccdb211fd9f5563d636b09ff136f968582..0ab6a2db61ab5746f12559e54e8cac01f70f7403 100755 (executable)
@@ -392,7 +392,7 @@ def add_overrides (new, upload, session):
             type_id = get_override_type(new[pkg]["type"]).overridetype_id
             priority_id = new[pkg]["priority id"]
             section_id = new[pkg]["section id"]
-            Logger.log(["%s overrides" % (srcpkg), suite, new[pkg]["component"], new[pkg]["type"], new[pkg]["priority"], new[pkg]["section"]])
+            Logger.log(["%s (%s) overrides" % (pkg, srcpkg), suite, new[pkg]["component"], new[pkg]["type"], new[pkg]["priority"], new[pkg]["section"]])
             session.execute("INSERT INTO override (suite, component, type, package, priority, section, maintainer) VALUES (:sid, :cid, :tid, :pkg, :pid, :sectid, '')",
                             { 'sid': suite_id, 'cid': component_id, 'tid':type_id, 'pkg': pkg, 'pid': priority_id, 'sectid': section_id})
             for f in new[pkg]["files"]: