Skip to content
This repository has been archived by the owner on Aug 22, 2019. It is now read-only.

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
akelad committed Nov 8, 2017
1 parent e5dfdfe commit fac4b94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rasa_core/channels/facebook.py
Expand Up @@ -96,7 +96,7 @@ def hello():
signature = request.headers.get("X-Hub-Signature") or ''
if not validate_hub_signature(self.fb_secret, request.data,
signature):
logger.debug("Wrong fb secret! Make sure this matches the "
logger.warn("Wrong fb secret! Make sure this matches the "
"secret in your facebook app settings")
return "not validated"

Expand Down Expand Up @@ -125,7 +125,7 @@ def hello():
except Exception as e:
logger.error("Exception when trying to handle "
"message.{0}".format(e))
logger.error(e,exec_info=True)
logger.error(e,exc_info=True)
if self.debug_mode:
raise
pass
Expand Down

0 comments on commit fac4b94

Please sign in to comment.