提交 46ba8150 编写于 作者: J Joerg Jaspert

add some more logging to c-s

Signed-off-by: NJoerg Jaspert <joerg@debian.org>
上级 dd80b169
......@@ -317,12 +317,15 @@ def process_file(file, suite, action, session, britney=False, force=False):
session.execute("""INSERT INTO src_associations (suite, source)
VALUES (:suiteid, :pkid)""",
{'suiteid': suite_id, 'pkid': pkid})
Logger.log(["added", package, version, architecture, suite, pkid])
elif action == "remove":
if association_id == None:
utils.warn("'%s_%s_%s' doesn't exist in suite %s." % (package, version, architecture, suite))
continue
else:
session.execute("""DELETE FROM src_associations WHERE id = :pkid""", {'pkid': association_id})
Logger.log(["removed", package, version, architecture, suite, pkid])
else:
# Find the existing associations ID, if any
q = session.execute("""SELECT id FROM bin_associations
......@@ -343,12 +346,14 @@ def process_file(file, suite, action, session, britney=False, force=False):
session.execute("""INSERT INTO bin_associations (suite, bin)
VALUES (:suiteid, :pkid)""",
{'suiteid': suite_id, 'pkid': pkid})
Logger.log(["added", package, version, architecture, suite, pkid])
elif action == "remove":
if association_id == None:
utils.warn("'%s_%s_%s' doesn't exist in suite %s." % (package, version, architecture, suite))
continue
else:
session.execute("""DELETE FROM bin_associations WHERE id = :pkid""", {'pkid': association_id})
Logger.log(["removed", package, version, architecture, suite, pkid])
session.commit()
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册