I give up on logging.
diff --git a/client/nexuscli/nexuscli.py b/client/nexuscli/nexuscli.py
index cf8684a..c431f46 100644
--- a/client/nexuscli/nexuscli.py
+++ b/client/nexuscli/nexuscli.py
@@ -26,8 +26,6 @@
 """
 import requests
 import numpy as np
-import logging
-import sys
 from datetime import datetime
 from collections import namedtuple, OrderedDict
 from pytz import UTC
@@ -56,8 +54,6 @@
 
 ISO_FORMAT = "%Y-%m-%dT%H:%M:%SZ"
 
-logging.basicConfig(stream=sys.stdout, level=logging.INFO)
-
 target = 'http://localhost:8083'
 
 session = requests.session()
@@ -72,7 +68,7 @@
     """
     global target
     target = url
-    logging.info("Target set to {}".format(target))
+    print("Target set to {}".format(target))
 
     if not use_session:
         global session