head	1.3;
access;
symbols;
locks; strict;
comment	@# @;


1.3
date	2007.09.03.01.40.30;	author mkanat;	state Exp;
branches;
next	1.2;

1.2
date	2007.09.03.01.40.03;	author mkanat;	state Exp;
branches;
next	1.1;

1.1
date	2007.04.30.20.49.32;	author arturkeska;	state Exp;
branches;
next	;


desc
@@


1.3
log
@And change it some more.
@
text
@// set the debug level to 2.
HTOM_Debug::SetDebugLevel(2);
// enable the test1 module for debuging.
HTOM_Debug::EnableModuleDebug("test1");

// these messages will be printed out.
HTOM_Debug::Out("level 0 module test1<br>\n",0,"test1");
HTOM_Debug::Out("level 1 module test1<br>\n",1,"test1");
HTOM_Debug::Out("level 2 module test1<br>\n",2,"test1");

// this message will not be printed out, because it is on the level 3
HTOM_Debug::Out("level 3 module test1",3,"test1");
@


1.2
log
@Change htom_debug.
@
text
@a0 4
// Initialize class loader object.
require_once '..\htom_autoloader.php';
HTOM_Autoloader::AddPath("..");

a12 3

// this message will not be printed out, because the test2 module has not been enabled.
HTOM_Debug::Out("level 0 module test1",0,"test2");
@


1.1
log
@*** empty log message ***
@
text
@a0 2
<?PHP

a19 2

?>@