summaryrefslogtreecommitdiff
path: root/executors.py
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2021-09-10 13:23:31 -0700
committerScott Gasch <[email protected]>2021-09-10 13:23:31 -0700
commit83c1e0d04fe2e78963c8b508e8b7d0ae03bfcb16 (patch)
treedadcd5f5a9fbd50f468a0f07ee28963ca4a3cf54 /executors.py
parent6f132c0342ab7aa438ed88d7c5f987cb52d8ca05 (diff)
Adding more tests, working on the test harness.
Diffstat (limited to 'executors.py')
-rw-r--r--executors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/executors.py b/executors.py
index e074c30..b243edd 100644
--- a/executors.py
+++ b/executors.py
@@ -64,7 +64,7 @@ SSH = 'ssh -oForwardX11=no'
def make_cloud_pickle(fun, *args, **kwargs):
- logger.info(f"Making cloudpickled bundle at {fun.__name__}")
+ logger.debug(f"Making cloudpickled bundle at {fun.__name__}")
return cloudpickle.dumps((fun, args, kwargs))