summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-11-10 12:09:10 +0200
committerLars Wirzenius <liw@liw.fi>2018-11-10 12:09:10 +0200
commit362cfba9f10f26cccf7ef90d2edab7b4dba38d47 (patch)
tree1cdfe611573d4e482b7109446407263ce54b46e7
parentb75b3bac116939adea0438f805d3967490a34522 (diff)
downloadmuck-poc-362cfba9f10f26cccf7ef90d2edab7b4dba38d47.tar.gz
Change: make warning message clearer
-rwxr-xr-xmuck_poc2
1 files changed, 1 insertions, 1 deletions
diff --git a/muck_poc b/muck_poc
index 9c5239d..1912ca4 100755
--- a/muck_poc
+++ b/muck_poc
@@ -173,7 +173,7 @@ class MuckAPI:
def _get_existing(self, rid):
ms = self._store.get_memory_store()
if rid not in ms:
- logging.warning('ERROR: {}: not found'.format(rid))
+ logging.warning('{}: not found'.format(rid))
raise bottle.HTTPResponse(status=404)
return ms[rid]