diff --git a/one/__init__.py b/one/__init__.py index ee5172fb..be6c2805 100644 --- a/one/__init__.py +++ b/one/__init__.py @@ -1,2 +1,2 @@ """The Open Neurophysiology Environment (ONE) API.""" -__version__ = '2.3.0' +__version__ = '2.3.1' diff --git a/one/remote/globus.py b/one/remote/globus.py index d12169a5..affbe590 100644 --- a/one/remote/globus.py +++ b/one/remote/globus.py @@ -344,7 +344,7 @@ def get_local_endpoint_id(): assert id_file.exists(), msg.format(id_file) local_id = id_file.read_text().strip() assert isinstance(local_id, str), msg.format(id_file) - print(f'Found local endpoint ID in Globus Connect settings {local_id}') + _logger.info(f'Found local endpoint ID in Globus Connect settings {local_id}') return UUID(local_id)