Giter Club home page Giter Club logo

openmage-sentry's People

Contributors

brunovianarezende avatar buric avatar jroussel avatar luigifab avatar wo0dyn avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

openmage-sentry's Issues

"Sentry is not fully installed: $sentry not found!"

Are there any dependencies?

Trying to move from Firegento_Logger and I'm getting this error when enabling Sentry:
Sentry is not fully installed: $sentry not found!

Used the normal diff (not "more").
Installed via FTP but do not see any composer dependencies.

Exception.log logging:
isDeveloperMode:off sentry:off
before the exceptions (unrelated)

OpenMage 19.4.23
PHP 8.1

API errors not sent to Sentry

The following PHP code must be added:

diff --git a/web/app/code/core/Mage/Api/Model/Server/Handler/Abstract.php b/web/app/code/core/Mage/Api/Model/Server/Handler/Abstract.php
index 16f6d66155..ddf7f86bb7 100644
--- a/web/app/code/core/Mage/Api/Model/Server/Handler/Abstract.php
+++ b/web/app/code/core/Mage/Api/Model/Server/Handler/Abstract.php
@@ -35,9 +35,15 @@ abstract class Mage_Api_Model_Server_Handler_Abstract
      * @param string $errorFile
      * @return bool
      */
-    public function handlePhpError($errorCode, $errorMessage, $errorFile)
+    public function handlePhpError($errorCode, $errorMessage, $errorFile, $errLine, $context = [])
     {
-        Mage::log($errorMessage . $errorFile);
+        global $sentry;
+        if ($sentry) {
+            $sentry->handleError($errorCode, $errorMessage, $errorFile, $errLine, $context);
+        }
+        else {
+            Mage::log($errorMessage . '  in ' . $errorFile . ' on line ' . $errLine);
+        }
         if (in_array($errorCode, [E_ERROR, E_USER_ERROR, E_RECOVERABLE_ERROR])) {
             $this->_fault('internal');
         }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.