aboutsummaryrefslogtreecommitdiffstats
path: root/include/zot.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-05-26 18:45:47 -0700
committerredmatrix <git@macgirvin.com>2016-05-26 18:45:47 -0700
commit61304d80d23bf624d9ca13319d2c6c09fdd0d70e (patch)
tree5cdbbe3a20ebcf896f92daa4643a4768733ce072 /include/zot.php
parent1bce285eca9bf53044f3949a55fc434db2671b3a (diff)
downloadvolse-hubzilla-61304d80d23bf624d9ca13319d2c6c09fdd0d70e.tar.gz
volse-hubzilla-61304d80d23bf624d9ca13319d2c6c09fdd0d70e.tar.bz2
volse-hubzilla-61304d80d23bf624d9ca13319d2c6c09fdd0d70e.zip
track down some issues from the application logs
Diffstat (limited to 'include/zot.php')
-rw-r--r--include/zot.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/zot.php b/include/zot.php
index b6424c272..ecfbfa128 100644
--- a/include/zot.php
+++ b/include/zot.php
@@ -373,12 +373,12 @@ function zot_refresh($them, $channel = null, $force = false) {
if($signed_token) {
$valid = rsa_verify('token.' . $token,base64url_decode($signed_token),$j['key']);
if(! $valid) {
- logger('invalid signed token: ' . $url . $rhs, LOGGER_NORMAL, LOG_WARN);
+ logger('invalid signed token: ' . $url . $rhs, LOGGER_NORMAL, LOG_ERR);
return false;
}
}
else {
- logger('No signed token from ' . $url . $rhs, LOGGER_NORMAL, LOG_WARN);
+ logger('No signed token from ' . $url . $rhs, LOGGER_NORMAL, LOG_WARNING);
// after 2017-01-01 this will be a hard error unless you over-ride it.
if((time() > 1483228800) && (! get_config('system','allow_unsigned_zotfinger'))) {
return false;