Forums / Developer / Ez debugging levels question

Ez debugging levels question

Author Message

Paul Forsyth

Friday 16 July 2004 8:38:16 am

I want to use a more sophisticated way of logging events and items in my code. For that i want to use levels and loggers.

Looking in ezdebug.php there seems to be support for levels but i haven't seen any examples of debug lines being incorporated into code in a way that allows for settings to influence what is displayed.

I tend to use debug lines as print statements, which isnt good. Are there examples someone could point me to that illustrate how to best use the eZ debug tools?

paul

--
http://www.visionwt.com

Björn Dieding@xrow.de

Friday 16 July 2004 8:53:44 am

ezdebug is related to php errors.

you might wanna look at eZLogger though.

I implemented my own class

<?php
<?php
/*! \file ezsimpleobject.php
*/

/*!
  \class eZSimpleObject ezsimpleobject.php
  \brief The class eZSimpleObject provide could be the super class of any regular object 
 		 you can also parse this Object to the tempalte engine
*/
include_once( "kernel/classes/ezpersistentobject.php" );
class eZSimpleObject extends eZPersistentObject
{
	function eZSimpleObject()
	{
	}
	function hasattribute($name)
	{
		$classname = get_class($this);
		$vars = get_class_vars($classname);
		if ( array_key_exists($name,$vars) )
			return true;
		else
			return false;
	}
	function toString()
	{
		return;
	}
	function setAttribute( $name, &$value )
	{
		$this->$name = & $value;
	}
	function & attribute($name)
	{
		return $this->$name;
	}
	function &instance($keys = null,$classname=__CLASS__)
	{
		if (is_array($keys) and count($keys))
		{
			$keystring=implode("", $array);
		}
		else if ($keys and (is_string($keys) or is_integer($keys) ) )
		{
			$keystring="$keys";
		}
		else
		{
			$keystring="";
		}
		$impl =& $GLOBALS[__CLASS__."GlobalInstance".$keystring];
        $class =& get_class( $impl );
        if ( $class != __CLASS__ )
        {
            $impl = new $classname( $keys );
            $GLOBALS[__CLASS__."GlobalInstance".$keystring]=$impl;
        }
        return $impl;
	}
}
?>
class eZError extends eZSimpleObject
{
	function eZError( $text, $type=null,$number=null)
	{
		if ($text)
			$this->text=$text;
		if ($type)
			$this->error['type']=$type;
		if ($number)
			$this->error['number']=$number;
		if (isset($GLOBALS['eZErrors']))
		{
			$GLOBALS['eZErrors'][] = & $this;
		}
	}
	function hasErrors()
	{
		if ( isset($GLOBALS['eZErrors']) and count( $GLOBALS['eZErrors'] ) > 0)
		{
			return true;
		}
		else
		{
			return false;
		}
	}
	function clearAll()
	{
		unset($GLOBALS['eZErrors']);
	}
	function initGlobal( &$tpl )
	{
		if ( !isset($GLOBALS['eZErrors']) )
		{	
			$GLOBALS['eZErrors'] = array();
			if ( $tpl )
			{
				$tpl->setVariableRef('ezerrors',$GLOBALS['eZErrors'],'siteskins');
			}
			return true;
		}
		else
		{
			return false;
		}
	}
	function &instance($id)
	{
		return parent::instance($id,"ezerror");
	}
	var $text;
	var $error;
}
?>
{default warning_list=array()}
{section show=or(and(is_array($warning_list),$warning_list|count|gt(0) ), and(is_array($siteskins:ezerrors), $siteskins:ezerrors|count|gt(0) ) )}
<div class="warning">
	<h2>{"Warning"|i18n("design/siteskins")}</h2>
    <ul>
        {section name=Warning loop=$warning_list}
        <li>{$Warning:item.text} {section show=is_set($Warning:item.error.type)} {$Warning:item.error.type} ({$Warning:item.error.number}){/section}</li>
        {/section}
        {section name=Warning loop=$siteskins:ezerrors}
        <li>{$Warning:item.text} {section show=is_set($Warning:item.error.type)} {$Warning:item.error.type} ({$Warning:item.error.number}){/section}</li>
        {/section}
    </ul>
</div>
{/section}
{/default}

Looking for a new job? http://www.xrow.com/xrow-GmbH/Jobs
Looking for hosting? http://hostingezpublish.com
-----------------------------------------------------------------------------
GMT +01:00 Hannover, Germany
Web: http://www.xrow.com/

eZ debug

Timing: Jan 19 2025 11:54:09
Script start
Timing: Jan 19 2025 11:54:09
Module start 'content'
Timing: Jan 19 2025 11:54:10
Module end 'content'
Timing: Jan 19 2025 11:54:11
Script end

Main resources:

Total runtime1.6374 sec
Peak memory usage4,096.0000 KB
Database Queries191

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0175 588.9531180.8359
Module start 'content' 0.01751.3855 769.7891539.1719
Module end 'content' 1.40290.2344 1,308.9609336.7500
Script end 1.6373  1,645.7109 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00410.2533210.0002
Check MTime0.00160.0972210.0001
Mysql Total
Database connection0.00960.589210.0096
Mysqli_queries1.550794.70561910.0081
Looping result0.00240.14521890.0000
Template Total1.591197.220.7955
Template load0.00210.127520.0010
Template processing1.589097.043420.7945
Template load and register function0.00020.013410.0002
states
state_id_array0.00150.094110.0015
state_identifier_array0.00180.107820.0009
Override
Cache load0.00170.1027160.0001
Sytem overhead
Fetch class attribute can translate value0.00170.103930.0006
Fetch class attribute name0.00110.065530.0004
XML
Image XML parsing0.00100.058030.0003
class_abstraction
Instantiating content class attribute0.00000.000430.0000
General
dbfile0.00460.2803270.0002
String conversion0.00000.000630.0000
Note: percentages do not add up to 100% because some accumulators overlap

CSS/JS files loaded with "ezjscPacker" during request:

CacheTypePacklevelSourceFiles
CSS0extension/community/design/community/stylesheets/ext/jquery.autocomplete.css
extension/community_design/design/suncana/stylesheets/scrollbars.css
extension/community_design/design/suncana/stylesheets/tabs.css
extension/community_design/design/suncana/stylesheets/roadmap.css
extension/community_design/design/suncana/stylesheets/content.css
extension/community_design/design/suncana/stylesheets/star-rating.css
extension/community_design/design/suncana/stylesheets/syntax_and_custom_tags.css
extension/community_design/design/suncana/stylesheets/buttons.css
extension/community_design/design/suncana/stylesheets/tweetbox.css
extension/community_design/design/suncana/stylesheets/jquery.fancybox-1.3.4.css
extension/bcsmoothgallery/design/standard/stylesheets/magnific-popup.css
extension/sevenx/design/simple/stylesheets/star_rating.css
extension/sevenx/design/simple/stylesheets/libs/fontawesome/css/all.min.css
extension/sevenx/design/simple/stylesheets/main.v02.css
extension/sevenx/design/simple/stylesheets/main.v02.res.css
JS0extension/ezjscore/design/standard/lib/yui/3.17.2/build/yui/yui-min.js
extension/ezjscore/design/standard/javascript/jquery-3.7.0.min.js
extension/community_design/design/suncana/javascript/jquery.ui.core.min.js
extension/community_design/design/suncana/javascript/jquery.ui.widget.min.js
extension/community_design/design/suncana/javascript/jquery.easing.1.3.js
extension/community_design/design/suncana/javascript/jquery.ui.tabs.js
extension/community_design/design/suncana/javascript/jquery.hoverIntent.min.js
extension/community_design/design/suncana/javascript/jquery.popmenu.js
extension/community_design/design/suncana/javascript/jScrollPane.js
extension/community_design/design/suncana/javascript/jquery.mousewheel.js
extension/community_design/design/suncana/javascript/jquery.cycle.all.js
extension/sevenx/design/simple/javascript/jquery.scrollTo.js
extension/community_design/design/suncana/javascript/jquery.cookie.js
extension/community_design/design/suncana/javascript/ezstarrating_jquery.js
extension/community_design/design/suncana/javascript/jquery.initboxes.js
extension/community_design/design/suncana/javascript/app.js
extension/community_design/design/suncana/javascript/twitterwidget.js
extension/community_design/design/suncana/javascript/community.js
extension/community_design/design/suncana/javascript/roadmap.js
extension/community_design/design/suncana/javascript/ez.js
extension/community_design/design/suncana/javascript/ezshareevents.js
extension/sevenx/design/simple/javascript/main.js

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1node/view/full.tplfull/forum_topic.tplextension/sevenx/design/simple/override/templates/full/forum_topic.tplEdit templateOverride template
2content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
3content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
1content/datatype/view/ezxmltags/line.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/line.tplEdit templateOverride template
1content/datatype/view/ezimage.tpl<No override>extension/sevenx/design/simple/templates/content/datatype/view/ezimage.tplEdit templateOverride template
1content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
1pagelayout.tpl<No override>extension/sevenx/design/simple/templates/pagelayout.tplEdit templateOverride template
 Number of times templates used: 10
 Number of unique templates used: 7

Time used to render debug report: 0.0002 secs