Changeset 17903
- Timestamp:
- 10/03/08 17:37:52 (2 months ago)
- Files:
-
- trunk/midcom/midcom.core/midcom.php (modified) (1 diff)
- trunk/midcom/midcom.core/midcom/application.php (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/midcom/midcom.core/midcom.php
r17742 r17903 117 117 require('midcom/debug.php'); 118 118 119 debug_add("Start of MidCOM run: {$_SERVER['REQUEST_URI']}", MIDCOM_LOG_ INFO);119 debug_add("Start of MidCOM run: {$_SERVER['REQUEST_URI']}", MIDCOM_LOG_DEBUG); 120 120 121 121 /** trunk/midcom/midcom.core/midcom/application.php
r17900 r17903 598 598 debug_push_class(__CLASS__, __FUNCTION__); 599 599 600 debug_add("Dynamic load of URL {$url}", MIDCOM_LOG_ INFO);600 debug_add("Dynamic load of URL {$url}", MIDCOM_LOG_DEBUG); 601 601 602 602 if (substr($url, -5) == '.html') … … 673 673 { 674 674 $this->style->enter_context($context); 675 debug_add("Entering Context $context (old Context: $oldcontext)", MIDCOM_LOG_ INFO);675 debug_add("Entering Context $context (old Context: $oldcontext)", MIDCOM_LOG_DEBUG); 676 676 } 677 677 … … 682 682 { 683 683 $this->style->leave_context(); 684 debug_add("Leaving Context $context (new Context: $oldcontext)", MIDCOM_LOG_ INFO);684 debug_add("Leaving Context $context (new Context: $oldcontext)", MIDCOM_LOG_DEBUG); 685 685 } 686 686 … … 732 732 // This is here to avoid trouble with end-of-processing segfaults. Will block AFAIK 733 733 flush(); 734 debug_add("End of MidCOM run: {$_SERVER['REQUEST_URI']}", MIDCOM_LOG_ INFO);734 debug_add("End of MidCOM run: {$_SERVER['REQUEST_URI']}", MIDCOM_LOG_DEBUG); 735 735 } 736 736 … … 781 781 $substyle = $value; 782 782 debug_push_class(__CLASS__, __FUNCTION__); 783 debug_add("Substyle '$substyle' selected", MIDCOM_LOG_ INFO);783 debug_add("Substyle '$substyle' selected", MIDCOM_LOG_DEBUG); 784 784 debug_pop(); 785 785 break; … … 1932 1932 return false; 1933 1933 } else { 1934 debug_add("Setting active context to $id.", MIDCOM_LOG_ INFO);1934 debug_add("Setting active context to $id.", MIDCOM_LOG_DEBUG); 1935 1935 $this->_currentcontext = $id; 1936 1936 debug_pop(); … … 2324 2324 //debug_add('headers sent, exit()ing so nothing has a chance the mess things up anymore'); 2325 2325 debug_pop(); 2326 debug_add("End of MidCOM run: {$_SERVER['REQUEST_URI']}", MIDCOM_LOG_ INFO);2326 debug_add("End of MidCOM run: {$_SERVER['REQUEST_URI']}", MIDCOM_LOG_DEBUG); 2327 2327 exit(); 2328 2328 } … … 2410 2410 //debug_add('file sent, exit()ing so nothing has a chance the mess things up anymore'); 2411 2411 debug_pop(); 2412 debug_add("End of MidCOM run: {$_SERVER['REQUEST_URI']}", MIDCOM_LOG_ INFO);2412 debug_add("End of MidCOM run: {$_SERVER['REQUEST_URI']}", MIDCOM_LOG_DEBUG); 2413 2413 exit(); 2414 2414 }
