summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/cli/bitmask_cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/bitmask/cli/bitmask_cli.py')
-rwxr-xr-xsrc/leap/bitmask/cli/bitmask_cli.py6
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):