Add server-side info logging.

This commit is contained in:
Ian Gulliver
2014-06-09 23:51:41 -07:00
parent 1904d6bf50
commit 66c1564980
3 changed files with 7 additions and 0 deletions

1
api.py
View File

@@ -197,6 +197,7 @@ class APIWrapper(webapp2.RequestHandler):
'events': [],
}
for command in self.request_json['commands']:
logging.info('Command: %s', command)
callback = self._COMMANDS[command['command']]
result = callback(
self.verified_google_user,