gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-


From: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1627-g090eee0
Date: Tue, 25 Jun 2013 16:28:07 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  090eee0c8e084bcc3dd96e9ef9537b7d3f382c2c (commit)
      from  9ed128df862f00c94a0591c83faafcb1cdf7fc59 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=090eee0c8e084bcc3dd96e9ef9537b7d3f382c2c


commit 090eee0c8e084bcc3dd96e9ef9537b7d3f382c2c
Author: Sandro Santilli <address@hidden>
Date:   Tue Jun 25 18:27:38 2013 +0200

    Use DEBUG channel for function enter/exit logs (#38705)

diff --git a/libbase/log.h b/libbase/log.h
index 67ceff2..962d5bf 100644
--- a/libbase/log.h
+++ b/libbase/log.h
@@ -398,19 +398,19 @@ public:
     // Only print function tracing messages when multiple -v
     // options have been supplied. 
     HostFunctionReport() : _func(0) {
-        log_trace("entering");
+        log_debug("entering");
     }
 
     HostFunctionReport(const char* func) : _func(func) {
         if (func) {
-            log_trace("%s enter", func);
+            log_debug("%s enter", func);
         }
         else {
-            log_trace("No Function Name! enter");
+            log_debug("No Function Name! enter");
         }
     }
     ~HostFunctionReport() {
-        log_trace("%s returning", _func);
+        log_debug("%s returning", _func);
     }
 private:
     const char* _func;
@@ -436,10 +436,10 @@ private:
 #define GNASH_REPORT_RETURN
 #else
 #define GNASH_REPORT_FUNCTION \
-    gnash::log_trace"entering")
+    gnash::log_debug("entering")
 
 #define GNASH_REPORT_RETURN \
-    gnash::log_trace("returning")
+    gnash::log_debug("returning")
 #endif
 
 }

-----------------------------------------------------------------------

Summary of changes:
 libbase/log.h |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]