浏览代码

dpkg: Split post_script_tasks() debug message

Move the ensure_diversions debug progress message just before the
function call, to make this less confusing.
Guillem Jover 12 年之前
父节点
当前提交
37ca4dc304
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/script.c

+ 2 - 2
src/script.c

@@ -69,10 +69,10 @@ post_postinst_tasks(struct pkginfo *pkg, enum pkgstatus new_status)
 static void
 static void
 post_script_tasks(void)
 post_script_tasks(void)
 {
 {
+	debug(dbg_triggersdetail, "post_script_tasks - ensure_diversions");
 	ensure_diversions();
 	ensure_diversions();
 
 
-	debug(dbg_triggersdetail,
-	      "post_script_tasks - ensure_diversions; trig_incorporate");
+	debug(dbg_triggersdetail, "post_script_tasks - trig_incorporate");
 	trig_incorporate(modstatdb_get_status());
 	trig_incorporate(modstatdb_get_status());
 }
 }