summaryrefslogtreecommitdiff
path: root/ick2/actions.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-03-30 14:14:49 +0300
committerLars Wirzenius <liw@liw.fi>2018-03-30 14:16:08 +0300
commit770bc9e29739e602ac95488d3e90b1480e55a936 (patch)
tree36f6b4b26f836e089cf075c31ff93e47eadf73c5 /ick2/actions.py
parent7951e2ee4f9bd2a2780488720e0b8c625e43e5d0 (diff)
downloadick2-770bc9e29739e602ac95488d3e90b1480e55a936.tar.gz
Drop: much debug logging
Diffstat (limited to 'ick2/actions.py')
-rw-r--r--ick2/actions.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/ick2/actions.py b/ick2/actions.py
index 632739a..fd0d282 100644
--- a/ick2/actions.py
+++ b/ick2/actions.py
@@ -15,7 +15,6 @@
import base64
import json
-import logging
import os
import tempfile
@@ -209,9 +208,6 @@ class CreateWorkspaceAction(Action):
pass
def execute(self, params, step):
- logging.debug('CreateWorkspaceAction: params=%r', params)
- logging.debug('CreateWorkspaceAction: step=%r', step)
-
env = self.get_env()
workspace = env.get_workspace_directory()
self._env.report(0, 'Created workspace %s\n' % workspace)
@@ -232,12 +228,6 @@ class ArchiveWorkspaceAction(Action): # pragma: no cover
url = self.get_blob_upload_url(blob_name)
headers = self.get_authz_headers()
- logging.debug('ArchiveWorkspaceAction: url=%r', url)
- logging.debug('ArchiveWorkspaceAction: headers=%r', headers)
-
- assert url is not None
- assert headers is not None
-
fd, tarball = tempfile.mkstemp()
os.close(fd)
tar = ['sudo', 'tar', '-zcf', tarball, '-C', dirname, '.']