Skip to content
Snippets Groups Projects
Commit cf2bb934 authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

MAINT: due to the additional output (setting logging off...) the combined...

MAINT: due to the additional output (setting logging off...) the combined method storeoff makes more problems than it solves
parent 237a4cc8
Branches
Tags
No related merge requests found
...@@ -89,11 +89,6 @@ def store(args): ...@@ -89,11 +89,6 @@ def store(args):
_store_log() _store_log()
def store_off(args):
_store_log()
_logging(False)
def parse_args(): def parse_args():
"""Parse the command line arguments.""" """Parse the command line arguments."""
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
...@@ -122,11 +117,6 @@ To view additional information about subcommands, execute: ...@@ -122,11 +117,6 @@ To view additional information about subcommands, execute:
help='Prints SQL logs.') help='Prints SQL logs.')
stop_parser.set_defaults(func=store) stop_parser.set_defaults(func=store)
stop_off_parser = subparsers.add_parser(
'storeoff',
help='Prints SQL logs and turns logging off.')
stop_off_parser.set_defaults(func=store_off)
return parser.parse_args() return parser.parse_args()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment