summaryrefslogtreecommitdiff
path: root/source4/lib/appweb/ejs-2.0/ejs/system/ejsSystemDebug.c
blob: 5a011e2a2db1568e043721dd21303bf2c356c871 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
 *	@file 	ejsSystemDebug.c
 *	@brief 	System.Debug class
 */
/********************************** Copyright *********************************/
/*
 *	Copyright (c) Mbedthis Software LLC, 2005-2006. All Rights Reserved.
 */
/********************************** Includes **********************************/

#include	"ejs.h"

/******************************************************************************/
/************************************ Methods *********************************/
/******************************************************************************/
/*
 *	function bool isDebugMode()
 *	MOB -- convert to accessor
 */

static int isDebugMode(Ejs *ejs, EjsVar *thisObj, int argc, EjsVar **argv)
{
	ejsTrace(ejs, "isDebugMode()\n");
	ejsSetReturnValueToInteger(ejs, mprGetDebugMode(ejs));
	return 0;
}

/******************************************************************************/
/******************************** Initialization ******************************/
/******************************************************************************/

int ejsDefineDebugClass(Ejs *ejs)
{
	EjsVar	*systemDebugClass;

	systemDebugClass =  ejsDefineClass(ejs, "System.Debug", "Object", 0);
	if (systemDebugClass == 0) {
		return MPR_ERR_CANT_INITIALIZE;
	}

	/*
	 *	Define the class methods
	 */
	ejsDefineCMethod(ejs, systemDebugClass, "isDebugMode", isDebugMode,
		EJS_NO_LOCAL);

	return ejsObjHasErrors(systemDebugClass) ? MPR_ERR_CANT_INITIALIZE : 0;
}

/******************************************************************************/

/*
 * Local variables:
 * tab-width: 4
 * c-basic-offset: 4
 * End:
 * vim:tw=78
 * vim600: sw=4 ts=4 fdm=marker
 * vim<600: sw=4 ts=4
 */