Mage::Log - Write to a Custom Database tableWhat should Mage::throwException do?How to create custom Log file...

Have astronauts in space suits ever taken selfies? If so, how?

How to draw a waving flag in TikZ

Why does Kotter return in Welcome Back Kotter?

Schoenfled Residua test shows proportionality hazard assumptions holds but Kaplan-Meier plots intersect

The Clique vs. Independent Set Problem

How is it possible to have an ability score that is less than 3?

Theorems that impeded progress

Font hinting is lost in Chrome-like browsers (for some languages )

In a 5 years PhD, is it possible to get a postdoc position with one publication? I can really use some advice

Why don't electron-positron collisions release infinite energy?

What is the offset in a seaplane's hull?

What do the dots in this tr command do: tr .............A-Z A-ZA-Z <<< "JVPQBOV" (with 13 dots)

Is every diagonalizable matrix is an exponential

Compress a signal by storing signal diff instead of actual samples - is there such a thing?

Languages that we cannot (dis)prove to be Context-Free

US citizen flying to France today and my passport expires in less than 2 months

Is it important to consider tone, melody, and musical form while writing a song?

A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?

How much RAM could one put in a typical 80386 setup?

Is it unprofessional to ask if a job posting on GlassDoor is real?

Assigning pointers to atomic type to pointers to non atomic type

What defenses are there against being summoned by the Gate spell?

In Japanese, what’s the difference between “Tonari ni” (となりに) and “Tsugi” (つぎ)? When would you use one over the other?

I'm planning on buying a laser printer but concerned about the life cycle of toner in the machine



Mage::Log - Write to a Custom Database table


What should Mage::throwException do?How to create custom Log file in Magento 2?Shipping labelslog into magento remotelymagento 1.9.1 database table mg_core_cache_tag went missingHow to differentiate orders from Magento website, Andriod app & iOS appEmails are sent, but cron_schedule table is emptyFew records are created on my database table unconsciouslyMYSQL 1452 error on product page. report_event_types table is emptyCore URL re-write table - delete URL entries for deleted products






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







0















I have two question regarding Mage::Log.



We are working on an application using Magento. We would like to write programming errors to custom database table. Is it possible to do the same using Mage::Log.



Is it recommended to write the error log to a database table. Or should we continue using the exception.log and system.log. We have added some try catch block in our code, so if there are any exceptions occurred, then would like write it to a DB table or to log files. Which is the best practice to follow.










share|improve this question














bumped to the homepage by Community 2 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.






















    0















    I have two question regarding Mage::Log.



    We are working on an application using Magento. We would like to write programming errors to custom database table. Is it possible to do the same using Mage::Log.



    Is it recommended to write the error log to a database table. Or should we continue using the exception.log and system.log. We have added some try catch block in our code, so if there are any exceptions occurred, then would like write it to a DB table or to log files. Which is the best practice to follow.










    share|improve this question














    bumped to the homepage by Community 2 mins ago


    This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.


















      0












      0








      0








      I have two question regarding Mage::Log.



      We are working on an application using Magento. We would like to write programming errors to custom database table. Is it possible to do the same using Mage::Log.



      Is it recommended to write the error log to a database table. Or should we continue using the exception.log and system.log. We have added some try catch block in our code, so if there are any exceptions occurred, then would like write it to a DB table or to log files. Which is the best practice to follow.










      share|improve this question














      I have two question regarding Mage::Log.



      We are working on an application using Magento. We would like to write programming errors to custom database table. Is it possible to do the same using Mage::Log.



      Is it recommended to write the error log to a database table. Or should we continue using the exception.log and system.log. We have added some try catch block in our code, so if there are any exceptions occurred, then would like write it to a DB table or to log files. Which is the best practice to follow.







      magento-1.9 logging






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Feb 2 '16 at 9:07









      nikhilnikhil

      1331315




      1331315





      bumped to the homepage by Community 2 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







      bumped to the homepage by Community 2 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
























          2 Answers
          2






          active

          oldest

          votes


















          0














          Mage::log() is defined in app/Mage.php



          If you want to write to a db when you do a Mage::log('somestuff') you've to modify the file Mage.php in something like this:



          public static function log($message, $level = null, $file = '', $forceLog = false)
          {
          if (!self::getConfig()) {
          return;
          }

          try {
          $logActive = self::getStoreConfig('dev/log/active');
          if (empty($file)) {
          $file = self::getStoreConfig('dev/log/file');
          }
          }
          catch (Exception $e) {
          $logActive = true;
          }

          if (!self::$_isDeveloperMode && !$logActive && !$forceLog) {
          return;
          }

          static $loggers = array();

          $level = is_null($level) ? Zend_Log::DEBUG : $level;
          $file = empty($file) ? 'system.log' : $file;

          try {
          if (!isset($loggers[$file])) {
          $logDir = self::getBaseDir('var') . DS . 'log';
          $logFile = $logDir . DS . $file;

          if (!is_dir($logDir)) {
          mkdir($logDir);
          chmod($logDir, 0750);
          }

          if (!file_exists($logFile)) {
          file_put_contents($logFile, '');
          chmod($logFile, 0640);
          }

          $format = '%timestamp% %priorityName% (%priority%): %message%' . PHP_EOL;
          $formatter = new Zend_Log_Formatter_Simple($format);
          $writerModel = (string)self::getConfig()->getNode('global/log/core/writer_model');
          if (!self::$_app || !$writerModel) {
          $writer = new Zend_Log_Writer_Stream($logFile);
          }
          else {
          $writer = new $writerModel($logFile);
          }
          $writer->setFormatter($formatter);
          $loggers[$file] = new Zend_Log($writer);
          }

          if (is_array($message) || is_object($message)) {
          $message = print_r($message, true);
          }

          $loggers[$file]->log($message, $level);
          // START
          $write = Mage::getSingleton("core/resource")->getConnection("core_write");
          $query = "INSERT INTO your_log_table (message, level, logfile) values (:message, :level, :logfile)";
          $binds = array( 'message' => $message, 'level' => $level, 'logfile' => $logFile);
          $write->query($query, $binds);
          // END

          }
          catch (Exception $e) {
          }
          }





          share|improve this answer
























          • Is ok to edit the Mage.php file? Will it overwritten while upgrading Magento?

            – nikhil
            Feb 2 '16 at 11:46











          • is never ok to edit a core file.

            – nino.aratari
            Feb 2 '16 at 17:19



















          0














          IMHO the line here from the Mage::log() method



          $writerModel = (string)self::getConfig()->getNode('global/log/core/writer_model');


          shows how to register a own log writer, through a node in the local.xml.



          <config>        
          <global>
          <log>
          <core>
          <writer_model>Zend_Log_Writer_Db</writer_model>
          </core>
          </log>
          </global>
          <config>


          You can extend the Zend_Log_Writer_Db and create your DB connection, table and columnmapping in the construtor, beacause Mage::log() just create a new instance here.



          if (!self::$_app || !$writerModel) {
          $writer = new Zend_Log_Writer_Stream($logFile);
          } else {
          $writer = new $writerModel($logFile);
          }


          So INHO no Core changes need or for DB logging or recommended ;)



          But please correct me if I am wrong!






          share|improve this answer
























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "479"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f100013%2fmagelog-write-to-a-custom-database-table%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Mage::log() is defined in app/Mage.php



            If you want to write to a db when you do a Mage::log('somestuff') you've to modify the file Mage.php in something like this:



            public static function log($message, $level = null, $file = '', $forceLog = false)
            {
            if (!self::getConfig()) {
            return;
            }

            try {
            $logActive = self::getStoreConfig('dev/log/active');
            if (empty($file)) {
            $file = self::getStoreConfig('dev/log/file');
            }
            }
            catch (Exception $e) {
            $logActive = true;
            }

            if (!self::$_isDeveloperMode && !$logActive && !$forceLog) {
            return;
            }

            static $loggers = array();

            $level = is_null($level) ? Zend_Log::DEBUG : $level;
            $file = empty($file) ? 'system.log' : $file;

            try {
            if (!isset($loggers[$file])) {
            $logDir = self::getBaseDir('var') . DS . 'log';
            $logFile = $logDir . DS . $file;

            if (!is_dir($logDir)) {
            mkdir($logDir);
            chmod($logDir, 0750);
            }

            if (!file_exists($logFile)) {
            file_put_contents($logFile, '');
            chmod($logFile, 0640);
            }

            $format = '%timestamp% %priorityName% (%priority%): %message%' . PHP_EOL;
            $formatter = new Zend_Log_Formatter_Simple($format);
            $writerModel = (string)self::getConfig()->getNode('global/log/core/writer_model');
            if (!self::$_app || !$writerModel) {
            $writer = new Zend_Log_Writer_Stream($logFile);
            }
            else {
            $writer = new $writerModel($logFile);
            }
            $writer->setFormatter($formatter);
            $loggers[$file] = new Zend_Log($writer);
            }

            if (is_array($message) || is_object($message)) {
            $message = print_r($message, true);
            }

            $loggers[$file]->log($message, $level);
            // START
            $write = Mage::getSingleton("core/resource")->getConnection("core_write");
            $query = "INSERT INTO your_log_table (message, level, logfile) values (:message, :level, :logfile)";
            $binds = array( 'message' => $message, 'level' => $level, 'logfile' => $logFile);
            $write->query($query, $binds);
            // END

            }
            catch (Exception $e) {
            }
            }





            share|improve this answer
























            • Is ok to edit the Mage.php file? Will it overwritten while upgrading Magento?

              – nikhil
              Feb 2 '16 at 11:46











            • is never ok to edit a core file.

              – nino.aratari
              Feb 2 '16 at 17:19
















            0














            Mage::log() is defined in app/Mage.php



            If you want to write to a db when you do a Mage::log('somestuff') you've to modify the file Mage.php in something like this:



            public static function log($message, $level = null, $file = '', $forceLog = false)
            {
            if (!self::getConfig()) {
            return;
            }

            try {
            $logActive = self::getStoreConfig('dev/log/active');
            if (empty($file)) {
            $file = self::getStoreConfig('dev/log/file');
            }
            }
            catch (Exception $e) {
            $logActive = true;
            }

            if (!self::$_isDeveloperMode && !$logActive && !$forceLog) {
            return;
            }

            static $loggers = array();

            $level = is_null($level) ? Zend_Log::DEBUG : $level;
            $file = empty($file) ? 'system.log' : $file;

            try {
            if (!isset($loggers[$file])) {
            $logDir = self::getBaseDir('var') . DS . 'log';
            $logFile = $logDir . DS . $file;

            if (!is_dir($logDir)) {
            mkdir($logDir);
            chmod($logDir, 0750);
            }

            if (!file_exists($logFile)) {
            file_put_contents($logFile, '');
            chmod($logFile, 0640);
            }

            $format = '%timestamp% %priorityName% (%priority%): %message%' . PHP_EOL;
            $formatter = new Zend_Log_Formatter_Simple($format);
            $writerModel = (string)self::getConfig()->getNode('global/log/core/writer_model');
            if (!self::$_app || !$writerModel) {
            $writer = new Zend_Log_Writer_Stream($logFile);
            }
            else {
            $writer = new $writerModel($logFile);
            }
            $writer->setFormatter($formatter);
            $loggers[$file] = new Zend_Log($writer);
            }

            if (is_array($message) || is_object($message)) {
            $message = print_r($message, true);
            }

            $loggers[$file]->log($message, $level);
            // START
            $write = Mage::getSingleton("core/resource")->getConnection("core_write");
            $query = "INSERT INTO your_log_table (message, level, logfile) values (:message, :level, :logfile)";
            $binds = array( 'message' => $message, 'level' => $level, 'logfile' => $logFile);
            $write->query($query, $binds);
            // END

            }
            catch (Exception $e) {
            }
            }





            share|improve this answer
























            • Is ok to edit the Mage.php file? Will it overwritten while upgrading Magento?

              – nikhil
              Feb 2 '16 at 11:46











            • is never ok to edit a core file.

              – nino.aratari
              Feb 2 '16 at 17:19














            0












            0








            0







            Mage::log() is defined in app/Mage.php



            If you want to write to a db when you do a Mage::log('somestuff') you've to modify the file Mage.php in something like this:



            public static function log($message, $level = null, $file = '', $forceLog = false)
            {
            if (!self::getConfig()) {
            return;
            }

            try {
            $logActive = self::getStoreConfig('dev/log/active');
            if (empty($file)) {
            $file = self::getStoreConfig('dev/log/file');
            }
            }
            catch (Exception $e) {
            $logActive = true;
            }

            if (!self::$_isDeveloperMode && !$logActive && !$forceLog) {
            return;
            }

            static $loggers = array();

            $level = is_null($level) ? Zend_Log::DEBUG : $level;
            $file = empty($file) ? 'system.log' : $file;

            try {
            if (!isset($loggers[$file])) {
            $logDir = self::getBaseDir('var') . DS . 'log';
            $logFile = $logDir . DS . $file;

            if (!is_dir($logDir)) {
            mkdir($logDir);
            chmod($logDir, 0750);
            }

            if (!file_exists($logFile)) {
            file_put_contents($logFile, '');
            chmod($logFile, 0640);
            }

            $format = '%timestamp% %priorityName% (%priority%): %message%' . PHP_EOL;
            $formatter = new Zend_Log_Formatter_Simple($format);
            $writerModel = (string)self::getConfig()->getNode('global/log/core/writer_model');
            if (!self::$_app || !$writerModel) {
            $writer = new Zend_Log_Writer_Stream($logFile);
            }
            else {
            $writer = new $writerModel($logFile);
            }
            $writer->setFormatter($formatter);
            $loggers[$file] = new Zend_Log($writer);
            }

            if (is_array($message) || is_object($message)) {
            $message = print_r($message, true);
            }

            $loggers[$file]->log($message, $level);
            // START
            $write = Mage::getSingleton("core/resource")->getConnection("core_write");
            $query = "INSERT INTO your_log_table (message, level, logfile) values (:message, :level, :logfile)";
            $binds = array( 'message' => $message, 'level' => $level, 'logfile' => $logFile);
            $write->query($query, $binds);
            // END

            }
            catch (Exception $e) {
            }
            }





            share|improve this answer













            Mage::log() is defined in app/Mage.php



            If you want to write to a db when you do a Mage::log('somestuff') you've to modify the file Mage.php in something like this:



            public static function log($message, $level = null, $file = '', $forceLog = false)
            {
            if (!self::getConfig()) {
            return;
            }

            try {
            $logActive = self::getStoreConfig('dev/log/active');
            if (empty($file)) {
            $file = self::getStoreConfig('dev/log/file');
            }
            }
            catch (Exception $e) {
            $logActive = true;
            }

            if (!self::$_isDeveloperMode && !$logActive && !$forceLog) {
            return;
            }

            static $loggers = array();

            $level = is_null($level) ? Zend_Log::DEBUG : $level;
            $file = empty($file) ? 'system.log' : $file;

            try {
            if (!isset($loggers[$file])) {
            $logDir = self::getBaseDir('var') . DS . 'log';
            $logFile = $logDir . DS . $file;

            if (!is_dir($logDir)) {
            mkdir($logDir);
            chmod($logDir, 0750);
            }

            if (!file_exists($logFile)) {
            file_put_contents($logFile, '');
            chmod($logFile, 0640);
            }

            $format = '%timestamp% %priorityName% (%priority%): %message%' . PHP_EOL;
            $formatter = new Zend_Log_Formatter_Simple($format);
            $writerModel = (string)self::getConfig()->getNode('global/log/core/writer_model');
            if (!self::$_app || !$writerModel) {
            $writer = new Zend_Log_Writer_Stream($logFile);
            }
            else {
            $writer = new $writerModel($logFile);
            }
            $writer->setFormatter($formatter);
            $loggers[$file] = new Zend_Log($writer);
            }

            if (is_array($message) || is_object($message)) {
            $message = print_r($message, true);
            }

            $loggers[$file]->log($message, $level);
            // START
            $write = Mage::getSingleton("core/resource")->getConnection("core_write");
            $query = "INSERT INTO your_log_table (message, level, logfile) values (:message, :level, :logfile)";
            $binds = array( 'message' => $message, 'level' => $level, 'logfile' => $logFile);
            $write->query($query, $binds);
            // END

            }
            catch (Exception $e) {
            }
            }






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Feb 2 '16 at 10:52









            nino.aratarinino.aratari

            7417




            7417













            • Is ok to edit the Mage.php file? Will it overwritten while upgrading Magento?

              – nikhil
              Feb 2 '16 at 11:46











            • is never ok to edit a core file.

              – nino.aratari
              Feb 2 '16 at 17:19



















            • Is ok to edit the Mage.php file? Will it overwritten while upgrading Magento?

              – nikhil
              Feb 2 '16 at 11:46











            • is never ok to edit a core file.

              – nino.aratari
              Feb 2 '16 at 17:19

















            Is ok to edit the Mage.php file? Will it overwritten while upgrading Magento?

            – nikhil
            Feb 2 '16 at 11:46





            Is ok to edit the Mage.php file? Will it overwritten while upgrading Magento?

            – nikhil
            Feb 2 '16 at 11:46













            is never ok to edit a core file.

            – nino.aratari
            Feb 2 '16 at 17:19





            is never ok to edit a core file.

            – nino.aratari
            Feb 2 '16 at 17:19













            0














            IMHO the line here from the Mage::log() method



            $writerModel = (string)self::getConfig()->getNode('global/log/core/writer_model');


            shows how to register a own log writer, through a node in the local.xml.



            <config>        
            <global>
            <log>
            <core>
            <writer_model>Zend_Log_Writer_Db</writer_model>
            </core>
            </log>
            </global>
            <config>


            You can extend the Zend_Log_Writer_Db and create your DB connection, table and columnmapping in the construtor, beacause Mage::log() just create a new instance here.



            if (!self::$_app || !$writerModel) {
            $writer = new Zend_Log_Writer_Stream($logFile);
            } else {
            $writer = new $writerModel($logFile);
            }


            So INHO no Core changes need or for DB logging or recommended ;)



            But please correct me if I am wrong!






            share|improve this answer




























              0














              IMHO the line here from the Mage::log() method



              $writerModel = (string)self::getConfig()->getNode('global/log/core/writer_model');


              shows how to register a own log writer, through a node in the local.xml.



              <config>        
              <global>
              <log>
              <core>
              <writer_model>Zend_Log_Writer_Db</writer_model>
              </core>
              </log>
              </global>
              <config>


              You can extend the Zend_Log_Writer_Db and create your DB connection, table and columnmapping in the construtor, beacause Mage::log() just create a new instance here.



              if (!self::$_app || !$writerModel) {
              $writer = new Zend_Log_Writer_Stream($logFile);
              } else {
              $writer = new $writerModel($logFile);
              }


              So INHO no Core changes need or for DB logging or recommended ;)



              But please correct me if I am wrong!






              share|improve this answer


























                0












                0








                0







                IMHO the line here from the Mage::log() method



                $writerModel = (string)self::getConfig()->getNode('global/log/core/writer_model');


                shows how to register a own log writer, through a node in the local.xml.



                <config>        
                <global>
                <log>
                <core>
                <writer_model>Zend_Log_Writer_Db</writer_model>
                </core>
                </log>
                </global>
                <config>


                You can extend the Zend_Log_Writer_Db and create your DB connection, table and columnmapping in the construtor, beacause Mage::log() just create a new instance here.



                if (!self::$_app || !$writerModel) {
                $writer = new Zend_Log_Writer_Stream($logFile);
                } else {
                $writer = new $writerModel($logFile);
                }


                So INHO no Core changes need or for DB logging or recommended ;)



                But please correct me if I am wrong!






                share|improve this answer













                IMHO the line here from the Mage::log() method



                $writerModel = (string)self::getConfig()->getNode('global/log/core/writer_model');


                shows how to register a own log writer, through a node in the local.xml.



                <config>        
                <global>
                <log>
                <core>
                <writer_model>Zend_Log_Writer_Db</writer_model>
                </core>
                </log>
                </global>
                <config>


                You can extend the Zend_Log_Writer_Db and create your DB connection, table and columnmapping in the construtor, beacause Mage::log() just create a new instance here.



                if (!self::$_app || !$writerModel) {
                $writer = new Zend_Log_Writer_Stream($logFile);
                } else {
                $writer = new $writerModel($logFile);
                }


                So INHO no Core changes need or for DB logging or recommended ;)



                But please correct me if I am wrong!







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Oct 18 '17 at 8:59









                GeiselGeisel

                311




                311






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Magento Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f100013%2fmagelog-write-to-a-custom-database-table%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    迭戈·戈丁...

                    A phrase ”follow into" in a context The 2019 Stack Overflow Developer Survey Results Are...

                    1960s short story making fun of James Bond-style spy fiction The 2019 Stack Overflow Developer...