debuggers.hg
changeset 12713:41381d057ee0
Include the rotated xend.log.X in the bug report.
Signed-off-by: Ewan Mellor <ewan@xensource.com>
Signed-off-by: Ewan Mellor <ewan@xensource.com>
author | Ewan Mellor <ewan@xensource.com> |
---|---|
date | Fri Dec 01 13:06:15 2006 +0000 (2006-12-01) |
parents | 5dae3263f85c |
children | 3570295a44cb |
files | tools/python/xen/util/bugtool.py |
line diff
1.1 --- a/tools/python/xen/util/bugtool.py Fri Dec 01 12:24:42 2006 +0000 1.2 +++ b/tools/python/xen/util/bugtool.py Fri Dec 01 13:06:15 2006 +0000 1.3 @@ -43,8 +43,9 @@ TITLE_RE = re.compile(r'<title>(.*)</tit 1.4 1.5 FILES_TO_SEND = [ '/var/log/' + x for x in 1.6 [ 'syslog', 'messages', 'debug', 1.7 - 'xen/xend.log', 'xen/xend-debug.log', 'xen/xenstored-trace.log', 1.8 - 'xen/xen-hotplug.log' ] ] 1.9 + 'xen/xend-debug.log', 'xen/xenstored-trace.log', 1.10 + 'xen/xen-hotplug.log', 'xen/xend.log' ] + 1.11 + [ 'xen/xend.log.%d' % z for z in range(1,6) ] ] 1.12 #FILES_TO_SEND = [ ] 1.13 1.14