diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2016-09-27 11:31:22 -0400 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2016-09-27 11:33:28 -0400 |
commit | 321dd225e40be8f3e0c2e058f831ab804ca622b0 (patch) | |
tree | 6def2b89d8f49a1f0769cdf85bde186731a66ef0 /src/leap/bitmask/cli/bitmask_cli.py | |
parent | a61019a5d30502a06b3a0ef09ca32044b8d09e2b (diff) |
[feature] upload logs from the cli
Diffstat (limited to 'src/leap/bitmask/cli/bitmask_cli.py')
-rwxr-xr-x | src/leap/bitmask/cli/bitmask_cli.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/leap/bitmask/cli/bitmask_cli.py b/src/leap/bitmask/cli/bitmask_cli.py index 091b73f..64fe74b 100755 --- a/src/leap/bitmask/cli/bitmask_cli.py +++ b/src/leap/bitmask/cli/bitmask_cli.py @@ -30,6 +30,7 @@ from leap.bitmask.cli.mail import Mail from leap.bitmask.cli.webui import WebUI from leap.bitmask.cli import command from leap.bitmask.cli.user import User +from leap.bitmask.cli.logs import Logs class BitmaskCLI(command.Command): @@ -44,6 +45,7 @@ SERVICE COMMANDS: eip Encrypted Internet Proxy keys Bitmask Keymanager ui Bitmask User Interface + logs Manages bitmask daemon logs GENERAL COMMANDS: @@ -79,6 +81,10 @@ GENERAL COMMANDS: webui = WebUI() return webui.execute(raw_args) + def logs(self, raw_args): + logs = Logs() + return logs.execute(raw_args) + # Single commands def start(self, raw_args): |