Skip to content

Commit

Permalink
Fix log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil Rzewski committed Feb 12, 2017
1 parent 2798503 commit d83d503
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kubewatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ def log(str, severity='info'):

KUBE_URL = os.getenv('KUBE_URL')
if not KUBE_URL:
log('Did not find Kubernetes API server URL at env variable "KUBE_URL". Will attempt to autodiscover.' 'info')
log('Did not find Kubernetes API server URL at env variable "KUBE_URL". Will attempt to autodiscover.', 'info')

#
# Instantiate the customer admin SDC client
#
print('SDC_URL = ' + SDC_URL)
log('SDC_URL = ' + SDC_URL, 'info')
ca_sdclient = SdcClient(SDC_ADMIN_TOKEN, SDC_URL)

res = ca_sdclient.get_user_info()
Expand Down

0 comments on commit d83d503

Please sign in to comment.