Skip to content

Commit

Permalink
fix: dev: fixing logger info when some valid numeric string is updati…
Browse files Browse the repository at this point in the history
…ng a windowsize
  • Loading branch information
geonexus committed Dec 10, 2015
1 parent 1e09c4d commit c45002f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fiware_cloto/cloto/manager/InfoManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def updateWindowSize(self, tenantId, newSize):

self.publish_message(message)

logger.info("%s windowsize updated to %d", tenantId, newSize)
logger.info("%s windowsize updated to %s", tenantId, str(newSize))
return t

def setInformations(self, sInfo, tInfo):
Expand Down

0 comments on commit c45002f

Please sign in to comment.