From e50646a07b5c4617a264107c5596d33383f90289 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Mon, 15 Aug 2016 19:20:51 +0200 Subject: [PATCH] implement borg debug-info, fixes #1122 In tracebacks we have it already, but with the command, you can have it without a traceback also. --- borg/archiver.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/borg/archiver.py b/borg/archiver.py index 41373e259..728ece672 100644 --- a/borg/archiver.py +++ b/borg/archiver.py @@ -666,6 +666,11 @@ class Archiver: print("warning: %s" % e) return self.exit_code + def do_debug_info(self, args): + """display system information for debugging / bug reports""" + print(sysinfo()) + return EXIT_SUCCESS + @with_repository() def do_debug_dump_archive_items(self, args, repository, manifest, key): """dump (decrypted, decompressed) archive items metadata (not: data)""" @@ -1487,6 +1492,18 @@ class Archiver: subparser.add_argument('topic', metavar='TOPIC', type=str, nargs='?', help='additional help on TOPIC') + debug_info_epilog = textwrap.dedent(""" + This command displays some system information that might be useful for bug + reports and debugging problems. If a traceback happens, this information is + already appended at the end of the traceback. + """) + subparser = subparsers.add_parser('debug-info', parents=[common_parser], + description=self.do_debug_info.__doc__, + epilog=debug_info_epilog, + formatter_class=argparse.RawDescriptionHelpFormatter, + help='show system infos for debugging / bug reports (debug)') + subparser.set_defaults(func=self.do_debug_info) + debug_dump_archive_items_epilog = textwrap.dedent(""" This command dumps raw (but decrypted and decompressed) archive items (only metadata) to files. """)