Skip to content

Commit

Permalink
Merge branch 'pu/ps/sentry/9830' into '2023.11'
Browse files Browse the repository at this point in the history
tweak(Tinebase/Server): don't log 403 to sentry

See merge request tine20/tine20!4753
  • Loading branch information
pschuele committed Jan 15, 2024
2 parents 2541a42 + 42a5c54 commit bf73e2d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tine20/Tinebase/Server/Abstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,9 @@ protected static function _getModelConfigMethods($frontend)
continue;
}
} catch (Exception $e) {
Tinebase_Exception::log($e);
if (! $e instanceof Tinebase_Exception_AccessDenied) {
Tinebase_Exception::log($e);
}
continue;
}

Expand Down

0 comments on commit bf73e2d

Please sign in to comment.