chiark / gitweb /
* Print `adt-run: trace' for trace output.
authorIan Jackson <ian@anarres>
Tue, 3 Apr 2007 18:26:30 +0000 (19:26 +0100)
committerIan Jackson <ian@anarres>
Tue, 3 Apr 2007 18:26:30 +0000 (19:26 +0100)
debian/changelog
runner/adt-run

index 37f801cdcea082bca9a840b2df5b970aaf90724a..65f8685cdc796876957495ba5fd2bf3b2d2c91dd 100644 (file)
@@ -16,6 +16,7 @@ autopkgtest (0.7.2~~iwj) unstable; urgency=low
   * Run udevsettle after xm destroy but before dmsetup remove.
   * Run sendmail -odi not -odq in adt-testreport-onepackage.
   * Longer timeouts by default.
+  * Print `adt-run: trace' for trace output.
   
  --
 
index 0f95ccd86e3727d897baba36e2db4de9c88a414e..34b22614a68252cc9d6c870d858849699649506d 100755 (executable)
@@ -89,7 +89,7 @@ def pstderr(m):
 def debug(m, minlevel=0):
        if opts.debuglevel < minlevel: return
        if opts.quiet and trace_stream is None: return
-       p = 'adt-run: debug'
+       p = 'adt-run: trace'
        if minlevel: p += `minlevel`
        p += ': '
        for l in m.rstrip('\n').split('\n'):