log4javascript-rails 1.4.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE +20 -0
- data/README.md +25 -0
- data/lib/log4javascript-rails.rb +8 -0
- data/lib/log4javascript-rails/version.rb +5 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6.tar.gz +0 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/changelog.txt +379 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/console.html +263 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/console_uncompressed.html +2279 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/demos/basic.html +159 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/demos/blank.html +4 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/demos/index.html +49 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/demos/inpage.html +174 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/demos/lite.html +148 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/docs/backwardsincompatibilities.html +90 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/docs/distribution.html +87 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/docs/index.html +190 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/docs/lite.html +182 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/docs/manual.html +3198 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/docs/manual_lite.html +383 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/docs/quickstart.html +230 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/docs/whatsnew.html +86 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/examples/demo.html +16 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/examples/example_manual.html +31 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/examples/example_quickstart_1.html +36 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/examples/myloggingservlet.do +0 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/console.html +263 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/console_uncompressed.html +2279 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/liteconsole.html +41 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/liteconsole_uncompressed.html +194 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/log4javascript.js +274 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/log4javascript_lite.js +55 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/log4javascript_lite_uncompressed.js +620 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/log4javascript_production.js +188 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/log4javascript_production_uncompressed.js +2290 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/log4javascript_uncompressed.js +5879 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/stubs/log4javascript.js +23 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/stubs/log4javascript_lite.js +21 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/stubs/log4javascript_lite_uncompressed.js +102 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/stubs/log4javascript_production.js +22 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/stubs/log4javascript_production_uncompressed.js +253 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/stubs/log4javascript_uncompressed.js +341 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/tests/log4javascript.js +32 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/tests/log4javascript_lite.js +16 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/tests/log4javascript_lite_uncompressed.js +16 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/tests/log4javascript_production.js +28 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/tests/log4javascript_production_uncompressed.js +728 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/js/tests/log4javascript_uncompressed.js +862 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/license.txt +201 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/log4javascript.js +274 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/log4javascript_uncompressed.js +5879 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/main.css +300 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/test/index.html +15 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/test/log4javascript.html +16 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/test/log4javascript_lite.html +16 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/test/log4javascript_lite_uncompressed.html +16 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/test/log4javascript_production.html +16 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/test/log4javascript_production_uncompressed.html +16 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/test/log4javascript_uncompressed.html +16 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/test/main.html +16 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/test/tests.css +88 -0
- data/vendor/assets/javascripts/log4javascript-1.4.6/test/xntest.js +739 -0
- data/vendor/assets/javascripts/log4javascript.js +1 -0
- data/vendor/assets/stylesheets/angular-ng-grid-rails.css +439 -0
- metadata +107 -0
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<title>log4javascript - backwards incompatibilities in version 1.4</title>
|
|
6
|
+
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
|
7
|
+
<meta name="author" content="Tim Down - tim@log4javascript.org" />
|
|
8
|
+
<meta name="description" content="log4javascript, a logging framework for JavaScript based on log4j" />
|
|
9
|
+
<meta name="robots" content="all" />
|
|
10
|
+
<link rel="stylesheet" type="text/css" media="screen,print" href="../main.css" title="Default" />
|
|
11
|
+
</head>
|
|
12
|
+
<body>
|
|
13
|
+
<div id="container" class="nonav">
|
|
14
|
+
<div id="header">
|
|
15
|
+
<h1><a href="/index.html">log4javascript</a></h1>
|
|
16
|
+
</div>
|
|
17
|
+
<div id="content">
|
|
18
|
+
<div id="nav">
|
|
19
|
+
<a class="navitem" href="../index.html">home</a>
|
|
20
|
+
| <a class="navitem" href="http://sourceforge.net/projects/log4javascript" target="_blank" title="Download (opens in new window)">download</a>
|
|
21
|
+
| <a class="navitem" href="index.html">docs</a>
|
|
22
|
+
| <a class="navitem" href="quickstart.html">quick start</a>
|
|
23
|
+
| <a class="navitem" href="../demos/index.html">demos</a>
|
|
24
|
+
| <a class="navitem" href="http://log4javascript.org" target="_blank">website</a>
|
|
25
|
+
| <a class="navitem" href="http://www.timdown.co.uk" target="_blank">timdown.co.uk</a>
|
|
26
|
+
</div>
|
|
27
|
+
<h1>Backwards incompatibilities in log4javascript 1.4</h1>
|
|
28
|
+
<ul>
|
|
29
|
+
<li>
|
|
30
|
+
Loggers are now hierarchical. This means logger names containing full stops have
|
|
31
|
+
special meaning. For example, from version 1.4 the logger named <code>myapp.ajax</code>
|
|
32
|
+
by default inherits all the appenders of the logger named <code>myapp</code>, while
|
|
33
|
+
prior to version 1.4 these loggers would be entirely independent;
|
|
34
|
+
</li>
|
|
35
|
+
<li>
|
|
36
|
+
The signature of the <code>log</code> method of <code>Logger</code> has changed.
|
|
37
|
+
However, you should not use this method directly; instead, use one of the level-specific
|
|
38
|
+
wrapper functions (<code>debug</code>, <code>info</code>, <code>error</code> etc.);
|
|
39
|
+
</li>
|
|
40
|
+
<li>
|
|
41
|
+
Appenders can no longer be configured via constructor parameters. Instead you must use
|
|
42
|
+
setter methods;
|
|
43
|
+
</li>
|
|
44
|
+
<li>
|
|
45
|
+
The format of requests sent via <code><a href="manual.html#ajaxappender">AjaxAppender</a></code>
|
|
46
|
+
has changed when using <code><a href="manual.html#jsonlayout">JsonLayout</a></code> or
|
|
47
|
+
<code><a href="manual.html#xmllayout">XmlLayout</a></code>: the formatted log messages are sent
|
|
48
|
+
as a name-value pair (with default name <code>data</code>) rather than a single unencoded string;
|
|
49
|
+
</li>
|
|
50
|
+
<li>
|
|
51
|
+
All timestamps returned by <code><a href="manual.html#xmllayout">XmlLayout</a></code>,
|
|
52
|
+
<code><a href="manual.html#jsonlayout">JsonLayout</a></code> and
|
|
53
|
+
<code><a href="manual.html#httppostdatlayout">HttpPostDataLayout</a></code> are
|
|
54
|
+
now measured in milliseconds since January 1st 1970 (previously they were returned
|
|
55
|
+
as seconds since January 1st 1970);
|
|
56
|
+
</li>
|
|
57
|
+
<li>
|
|
58
|
+
The constructors for <a href="manual.html#jsonlayout">JsonLayout</a> and
|
|
59
|
+
<a href="manual.html#httppostdatlayout">HttpPostDataLayout</a> have changed; the property names
|
|
60
|
+
used for the properties of the logging event are now set via <code>setKeys</code> rather than
|
|
61
|
+
in the constructor;
|
|
62
|
+
</li>
|
|
63
|
+
<li>
|
|
64
|
+
<code>setReadable</code> has been removed from <a href="manual.html#jsonlayout">JsonLayout</a>.
|
|
65
|
+
The <code>readable</code> property should now be set via the constructor;
|
|
66
|
+
</li>
|
|
67
|
+
<li>
|
|
68
|
+
<code>addErrorListener</code> and <code>removeErrorListener</code> removed from
|
|
69
|
+
the <code>log4javascript</code> object and replaced with the more generic
|
|
70
|
+
<code><a href="manual.html#log4javascriptaddeventlistener">addEventListener</a></code>
|
|
71
|
+
and <code>removeEventListener</code> methods. The listener functions are passed
|
|
72
|
+
different parameters.
|
|
73
|
+
</li>
|
|
74
|
+
</ul>
|
|
75
|
+
</div>
|
|
76
|
+
<div id="footer">
|
|
77
|
+
<span class="externallinkinfo">
|
|
78
|
+
<strong>NB.</strong> All external links open in a new window.
|
|
79
|
+
</span>
|
|
80
|
+
Written by Tim Down. <a href="mailto:tim@log4javascript.org">tim@log4javascript.org</a>
|
|
81
|
+
<br />
|
|
82
|
+
log4javascript is distributed under the <a href="http://www.apache.org/licenses/LICENSE-2.0.html"
|
|
83
|
+
title="Apache License, Version 2.0 (opens in new window)" target="_blank">Apache License,
|
|
84
|
+
Version 2.0</a>
|
|
85
|
+
|
|
86
|
+
</div>
|
|
87
|
+
</div>
|
|
88
|
+
|
|
89
|
+
</body>
|
|
90
|
+
</html>
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en" >
|
|
4
|
+
<head>
|
|
5
|
+
<title>log4javascript 1.4 distribution</title>
|
|
6
|
+
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
|
7
|
+
<meta name="author" content="Tim Down - tim@log4javascript.org" />
|
|
8
|
+
<meta name="description" content="log4javascript, a logging framework for JavaScript based on log4j" />
|
|
9
|
+
<meta name="robots" content="all" />
|
|
10
|
+
<link rel="stylesheet" type="text/css" media="screen,print" href="../main.css" title="Default" />
|
|
11
|
+
</head>
|
|
12
|
+
<body>
|
|
13
|
+
<div id="container" class="nonav">
|
|
14
|
+
<div id="header">
|
|
15
|
+
<h1><a href="../index.html">log4javascript</a></h1>
|
|
16
|
+
</div>
|
|
17
|
+
<div id="content">
|
|
18
|
+
<div id="nav">
|
|
19
|
+
<a class="navitem" href="../index.html">home</a>
|
|
20
|
+
| <a class="navitem" href="http://sourceforge.net/projects/log4javascript" target="_blank" title="Download (opens in new window)">download</a>
|
|
21
|
+
| <a class="navitem" href="index.html">docs</a>
|
|
22
|
+
| <a class="navitem" href="quickstart.html">quick start</a>
|
|
23
|
+
| <a class="navitem" href="../demos/index.html">demos</a>
|
|
24
|
+
| <a class="navitem" href="http://log4javascript.org" target="_blank">website</a>
|
|
25
|
+
| <a class="navitem" href="http://www.timdown.co.uk" target="_blank">timdown.co.uk</a>
|
|
26
|
+
</div>
|
|
27
|
+
<h1>log4javascript 1.4 distribution</h1>
|
|
28
|
+
<p>
|
|
29
|
+
From version 1.4 the distribution includes three different editions of log4javascript:
|
|
30
|
+
</p>
|
|
31
|
+
<ul>
|
|
32
|
+
<li>
|
|
33
|
+
<div><strong>Standard Edition</strong></div>
|
|
34
|
+
<p>
|
|
35
|
+
Equivalent to log4javascript from earlier versions and suitable for general JavaScript
|
|
36
|
+
debugging and logging (including via Ajax).
|
|
37
|
+
</p>
|
|
38
|
+
</li>
|
|
39
|
+
<li>
|
|
40
|
+
<div><strong>Production Edition</strong></div>
|
|
41
|
+
<p>
|
|
42
|
+
Designed for use in production systems where the focus is solely on logging JavaScript
|
|
43
|
+
messages back to the server. Consequently this edition omits all appenders except
|
|
44
|
+
<a href="manual.html#ajaxappender">AjaxAppender</a>, resulting in a drastically reduced
|
|
45
|
+
file size compared to the standard edition.
|
|
46
|
+
</p>
|
|
47
|
+
</li>
|
|
48
|
+
<li>
|
|
49
|
+
<div><strong>Lite Edition</strong></div>
|
|
50
|
+
<p>
|
|
51
|
+
A lightweight version of log4javascript for quick page debugging. Included is a single logger
|
|
52
|
+
using a basic pop-up window appender with a fixed layout.
|
|
53
|
+
</p>
|
|
54
|
+
</li>
|
|
55
|
+
</ul>
|
|
56
|
+
<p>
|
|
57
|
+
Each edition comes in compressed and uncompressed versions. The compressed version is
|
|
58
|
+
functionally identical to the uncompressed version but has had whitespace and comments removed
|
|
59
|
+
and therefore downloads more quickly.
|
|
60
|
+
</p>
|
|
61
|
+
<p>
|
|
62
|
+
Each edition also comes with a stub version. This contains dummy implementations of all
|
|
63
|
+
log4javacript objects and methods in the public API, making it ideal for production environments
|
|
64
|
+
where logging is not required. Replacing the main log4javascript script file with this file
|
|
65
|
+
means that log calls may be left in production code. Compressed and uncompressed versions of
|
|
66
|
+
each stub are included.
|
|
67
|
+
</p>
|
|
68
|
+
<p>
|
|
69
|
+
Finally, each edition comes with a suite of unit tests, available as HTML pages in the
|
|
70
|
+
<code>test/</code> directory. Note that these tests crash old versions (pre-3.1) of Safari. Sorry.
|
|
71
|
+
</p>
|
|
72
|
+
</div>
|
|
73
|
+
<div id="footer">
|
|
74
|
+
<span class="externallinkinfo">
|
|
75
|
+
<strong>NB.</strong> All external links open in a new window.
|
|
76
|
+
</span>
|
|
77
|
+
Written by Tim Down. <a href="mailto:tim@log4javascript.org">tim@log4javascript.org</a>
|
|
78
|
+
<br />
|
|
79
|
+
log4javascript is distributed under the <a href="http://www.apache.org/licenses/LICENSE-2.0.html"
|
|
80
|
+
title="Apache License, Version 2.0 (opens in new window)" target="_blank">Apache License,
|
|
81
|
+
Version 2.0</a>
|
|
82
|
+
|
|
83
|
+
</div>
|
|
84
|
+
</div>
|
|
85
|
+
|
|
86
|
+
</body>
|
|
87
|
+
</html>
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<title>log4javascript documentation</title>
|
|
6
|
+
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
|
7
|
+
<meta name="author" content="Tim Down - tim@log4javascript.org" />
|
|
8
|
+
<meta name="description" content="log4javascript, a logging framework for JavaScript based on log4j" />
|
|
9
|
+
<meta name="robots" content="all" />
|
|
10
|
+
<link rel="stylesheet" type="text/css" media="screen,print" href="../main.css" title="Default" />
|
|
11
|
+
</head>
|
|
12
|
+
<body>
|
|
13
|
+
<div id="container" class="nonav">
|
|
14
|
+
<div id="header">
|
|
15
|
+
<h1><a href="../index.html">log4javascript</a></h1>
|
|
16
|
+
<div id="nav">
|
|
17
|
+
<a class="navitem" href="../index.html">home</a>
|
|
18
|
+
| <a class="navitem" href="http://sourceforge.net/projects/log4javascript" target="_blank" title="Download (opens in new window)">download</a>
|
|
19
|
+
| <span class="navitem">docs</span>
|
|
20
|
+
| <a class="navitem" href="quickstart.html">quick start</a>
|
|
21
|
+
| <a class="navitem" href="../demos/index.html">demos</a>
|
|
22
|
+
| <a class="navitem" href="http://log4javascript.org" target="_blank">website</a>
|
|
23
|
+
| <a class="navitem" href="http://www.timdown.co.uk" target="_blank">timdown.co.uk</a>
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
<div id="content">
|
|
27
|
+
<h1>log4javascript 1.4 documentation</h1>
|
|
28
|
+
<div id="links">
|
|
29
|
+
<h2>Links</h2>
|
|
30
|
+
<ul>
|
|
31
|
+
<li><a href="quickstart.html">Quick start</a></li>
|
|
32
|
+
<li><a href="distribution.html">Details of the log4javascript distribution</a></li>
|
|
33
|
+
<li><a href="backwardsincompatibilities.html">Backwards incompatibilities</a></li>
|
|
34
|
+
<li><a href="whatsnew.html">What's new in this release</a></li>
|
|
35
|
+
<li><a href="../changelog.txt">Change log</a></li>
|
|
36
|
+
<li><a href="manual.html">log4javascript manual</a></li>
|
|
37
|
+
<li><a href="lite.html">log4javascript Lite</a></li>
|
|
38
|
+
<li><a href="manual_lite.html">log4javascript Lite manual</a></li>
|
|
39
|
+
<li><a href="../demos/basic.html">Basic demo</a></li>
|
|
40
|
+
<li><a href="../demos/ajax.html">Ajax demo</a></li>
|
|
41
|
+
</ul>
|
|
42
|
+
</div>
|
|
43
|
+
<div id="contents">
|
|
44
|
+
<h2>Contents</h2>
|
|
45
|
+
<ul>
|
|
46
|
+
<li><a href="#whatitis">What it is</a></li>
|
|
47
|
+
<li><a href="#whofor">Who it's for</a></li>
|
|
48
|
+
<li><a href="#previousversions">Note on previous versions</a></li>
|
|
49
|
+
<li><a href="#features">Features</a></li>
|
|
50
|
+
<li><a href="#browsers">Browser support</a></li>
|
|
51
|
+
<li><a href="#licence">Licence</a></li>
|
|
52
|
+
<li><a href="#furtherreading">Further reading</a></li>
|
|
53
|
+
</ul>
|
|
54
|
+
</div>
|
|
55
|
+
<div id="whatitis">
|
|
56
|
+
<h2>What it is</h2>
|
|
57
|
+
<p>
|
|
58
|
+
log4javascript is a JavaScript logging framework based on the Java
|
|
59
|
+
logging framework <a href="http://logging.apache.org/log4j/docs/index.html"
|
|
60
|
+
title="log4j home page (opens in new window)" target="_blank">log4j</a>.
|
|
61
|
+
</p>
|
|
62
|
+
<p>
|
|
63
|
+
log4javascript implements a subset of log4j (primarily loggers, appenders
|
|
64
|
+
and layouts) and has a few convenience methods of its own for
|
|
65
|
+
quick JavaScript development. It can be used to debug JavaScript
|
|
66
|
+
applications of all sizes, including Ajax applications.
|
|
67
|
+
</p>
|
|
68
|
+
<p>
|
|
69
|
+
If you just want to start using it, try the <a href="quickstart.html">quickstart
|
|
70
|
+
tutorial</a>.
|
|
71
|
+
</p>
|
|
72
|
+
<p class="linktotop">
|
|
73
|
+
<a href="#container">Top</a>
|
|
74
|
+
</p>
|
|
75
|
+
</div>
|
|
76
|
+
<div id="whofor">
|
|
77
|
+
<h2>Who it's for</h2>
|
|
78
|
+
<p>
|
|
79
|
+
log4javascript is aimed at JavaScript developers.
|
|
80
|
+
</p>
|
|
81
|
+
<p class="linktotop">
|
|
82
|
+
<a href="#container">Top</a>
|
|
83
|
+
</p>
|
|
84
|
+
</div>
|
|
85
|
+
<div id="previousversions">
|
|
86
|
+
<h2>Note on previous versions</h2>
|
|
87
|
+
<p>
|
|
88
|
+
Documentation for previous versions of log4javascript are not available here.
|
|
89
|
+
However, documentation is bundled with every previous version, all of which
|
|
90
|
+
are <a href="http://sourceforge.net/projects/log4javascript"
|
|
91
|
+
target="_blank" title="Download (opens in new window)">available to download</a>.
|
|
92
|
+
</p>
|
|
93
|
+
</div>
|
|
94
|
+
<div id="features">
|
|
95
|
+
<h2>Features</h2>
|
|
96
|
+
<ul>
|
|
97
|
+
<li>can be initialized with one JavaScript include and one line of code;</li>
|
|
98
|
+
<li>
|
|
99
|
+
by default logs to a pop-up console window with powerful search (including
|
|
100
|
+
regular expression) and filtering features. This console window can also
|
|
101
|
+
be used inline as an iframe in the main page;
|
|
102
|
+
</li>
|
|
103
|
+
<li>
|
|
104
|
+
can send log messages to the server via HTTP (Ajax, if you like);
|
|
105
|
+
</li>
|
|
106
|
+
<li>
|
|
107
|
+
highly configurable using familiar methods from log4j, including the
|
|
108
|
+
powerful <code><a href="manual.html#patternlayout">PatternLayout</a></code>
|
|
109
|
+
which gives the developer complete control over the format of the log messages.
|
|
110
|
+
</li>
|
|
111
|
+
</ul>
|
|
112
|
+
<p class="linktotop">
|
|
113
|
+
<a href="#container">Top</a>
|
|
114
|
+
</p>
|
|
115
|
+
</div>
|
|
116
|
+
<div id="browsers">
|
|
117
|
+
<h2>Browser support</h2>
|
|
118
|
+
<h3>Fully supported browsers:</h3>
|
|
119
|
+
<ul>
|
|
120
|
+
<li>All versions Firefox back to 0.6</li>
|
|
121
|
+
<li>Other Mozilla-based browsers, as far back as Netscape 7</li>
|
|
122
|
+
<li>Internet Explorer 5 and higher for Windows</li>
|
|
123
|
+
<li>Safari 1.3 and higher (untested on earlier versions)</li>
|
|
124
|
+
<li>Opera 8.01 and higher (pre- version 9 browsers have a rendering
|
|
125
|
+
bug related to scrolling that affects searching in PopUpAppender and InPageAppender)</li>
|
|
126
|
+
<li>Konqueror 3.4.3 and higher (untested on earlier versions)</li>
|
|
127
|
+
<li>Google Chrome</li>
|
|
128
|
+
</ul>
|
|
129
|
+
<h3>Partially supported browsers:</h3>
|
|
130
|
+
<ul>
|
|
131
|
+
<li>Older Mozilla-based browsers, e.g. Netscape 6.2 (generally OK except for
|
|
132
|
+
display problems searching and filtering PopUpAppender and InPageAppender)</li>
|
|
133
|
+
<li>Opera 7.0 - 8.0 (InPageAppender not supported until version 7.5, plus some display
|
|
134
|
+
problems searching PopUpAppender and InPageAppender. AjaxAppender not supported at all)</li>
|
|
135
|
+
</ul>
|
|
136
|
+
<h3>Unsupported browsers:</h3>
|
|
137
|
+
<ul>
|
|
138
|
+
<li>
|
|
139
|
+
Internet Explorer for Mac. There are no plans to make log4javascript work
|
|
140
|
+
in this browser.
|
|
141
|
+
</li>
|
|
142
|
+
</ul>
|
|
143
|
+
<p class="linktotop">
|
|
144
|
+
<a href="#container">Top</a>
|
|
145
|
+
</p>
|
|
146
|
+
</div>
|
|
147
|
+
<div id="licence">
|
|
148
|
+
<h2>Licence</h2>
|
|
149
|
+
<p>
|
|
150
|
+
log4javascript is licenced under the <a href="http://www.apache.org/licenses/LICENSE-2.0.html"
|
|
151
|
+
title="Apache License, Version 2.0 (opens in new window)" target="_blank">Apache License,
|
|
152
|
+
Version 2.0</a>. The Apache website has <a href="http://www.apache.org/foundation/licence-FAQ.html#WhatDoesItMEAN"
|
|
153
|
+
title="View licence (opens in new window)" target="_blank">more details</a>.
|
|
154
|
+
</p>
|
|
155
|
+
<p class="linktotop">
|
|
156
|
+
<a href="#container">Top</a>
|
|
157
|
+
</p>
|
|
158
|
+
</div>
|
|
159
|
+
<div id="furtherreading">
|
|
160
|
+
<h2>Further reading</h2>
|
|
161
|
+
<p>
|
|
162
|
+
In order to gain an understanding of the ideas behind log4j and therefore log4javascript,
|
|
163
|
+
I highly recommend reading the <a href="http://logging.apache.org/log4j/docs/manual.html">short
|
|
164
|
+
introduction to log4j</a> from the log4j website. log4javascript borrows heavily from
|
|
165
|
+
log4j but does not carry over all its concepts - for example, Filters and Renderers are not
|
|
166
|
+
implemented.
|
|
167
|
+
</p>
|
|
168
|
+
<p>
|
|
169
|
+
<a href="manual.html">The full log4javascript manual</a>
|
|
170
|
+
</p>
|
|
171
|
+
<p class="linktotop">
|
|
172
|
+
<a href="#container">Top</a>
|
|
173
|
+
</p>
|
|
174
|
+
</div>
|
|
175
|
+
</div>
|
|
176
|
+
<div id="footer">
|
|
177
|
+
<span class="externallinkinfo">
|
|
178
|
+
<strong>NB.</strong> All external links open in a new window.
|
|
179
|
+
</span>
|
|
180
|
+
Written by Tim Down. <a href="mailto:tim@log4javascript.org">tim@log4javascript.org</a>
|
|
181
|
+
<br />
|
|
182
|
+
log4javascript is distributed under the <a href="http://www.apache.org/licenses/LICENSE-2.0.html"
|
|
183
|
+
title="Apache License, Version 2.0 (opens in new window)" target="_blank">Apache License,
|
|
184
|
+
Version 2.0</a>
|
|
185
|
+
|
|
186
|
+
</div>
|
|
187
|
+
</div>
|
|
188
|
+
|
|
189
|
+
</body>
|
|
190
|
+
</html>
|
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en" >
|
|
4
|
+
<head>
|
|
5
|
+
<title>log4javascript 1.4 Lite</title>
|
|
6
|
+
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
|
7
|
+
<meta name="author" content="Tim Down - tim@log4javascript.org" />
|
|
8
|
+
<meta name="description" content="log4javascript, a logging framework for JavaScript based on log4j" />
|
|
9
|
+
<meta name="robots" content="all" />
|
|
10
|
+
<link rel="stylesheet" type="text/css" media="screen,print" href="../main.css" title="Default" />
|
|
11
|
+
<style type="text/css">
|
|
12
|
+
.visibleifabletocopy {
|
|
13
|
+
display: none;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
body.abletocopy .visibleifabletocopy {
|
|
17
|
+
display: block;
|
|
18
|
+
}
|
|
19
|
+
</style>
|
|
20
|
+
<script type="text/javascript">
|
|
21
|
+
function copyCode() {
|
|
22
|
+
if (window.clipboardData && clipboardData.setData) {
|
|
23
|
+
clipboardData.setData("Text", code);
|
|
24
|
+
alert("Code copied to clipboard.")
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
var code;
|
|
29
|
+
|
|
30
|
+
window.onload = function() {
|
|
31
|
+
var textArea = document.getElementById("codetextarea");
|
|
32
|
+
code = textArea.value;
|
|
33
|
+
textArea.select();
|
|
34
|
+
if (window.clipboardData && clipboardData.setData) {
|
|
35
|
+
document.body.className = "abletocopy";
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
</script>
|
|
39
|
+
<link rel="stylesheet" type="text/css" media="screen,print" href="lite.css" title="Default" />
|
|
40
|
+
</head>
|
|
41
|
+
<body>
|
|
42
|
+
<div id="container" class="nonav">
|
|
43
|
+
<div id="header">
|
|
44
|
+
<h1><a href="../index.html">log4javascript</a></h1>
|
|
45
|
+
</div>
|
|
46
|
+
<div id="content">
|
|
47
|
+
<div id="nav">
|
|
48
|
+
<a class="navitem" href="../index.html">home</a>
|
|
49
|
+
| <a class="navitem" href="http://sourceforge.net/projects/log4javascript" target="_blank" title="Download (opens in new window)">download</a>
|
|
50
|
+
| <a class="navitem" href="index.html">docs</a>
|
|
51
|
+
| <a class="navitem" href="quickstart.html">quick start</a>
|
|
52
|
+
| <a class="navitem" href="../demos/index.html">demos</a>
|
|
53
|
+
| <a class="navitem" href="http://log4javascript.org" target="_blank">website</a>
|
|
54
|
+
| <a class="navitem" href="http://www.timdown.co.uk" target="_blank">timdown.co.uk</a>
|
|
55
|
+
</div>
|
|
56
|
+
<h1>log4javascript 1.4 Lite</h1>
|
|
57
|
+
<h2>Contents</h2>
|
|
58
|
+
<ul>
|
|
59
|
+
<li><a href="#intro">Introduction</a></li>
|
|
60
|
+
<li><a href="#code">Code</a></li>
|
|
61
|
+
<li><a href="#api">API</a></li>
|
|
62
|
+
</ul>
|
|
63
|
+
<div id="intro">
|
|
64
|
+
<h2>Introduction</h2>
|
|
65
|
+
<p>
|
|
66
|
+
log4javascript Lite is designed to be a basic, lightweight, cross-browser logging tool. It
|
|
67
|
+
provides functions to log messages of different severity to a pop-up window using the exactly
|
|
68
|
+
the same syntax as log4javascript.
|
|
69
|
+
</p>
|
|
70
|
+
<p class="linktotop">
|
|
71
|
+
<a href="#container">Top</a>
|
|
72
|
+
</p>
|
|
73
|
+
</div>
|
|
74
|
+
<div id="code">
|
|
75
|
+
<h2>Code</h2>
|
|
76
|
+
<p>
|
|
77
|
+
You can copy the code for log4javascript Lite below:
|
|
78
|
+
</p>
|
|
79
|
+
<textarea id="codetextarea" cols="80" rows="10">
|
|
80
|
+
if(!Array.prototype.shift){Array.prototype.shift=function(){if(this.length>0){var firstItem=this[0];for(var i=0,len=this.length-1;i<len;i++){this[i]=this[i+1];}
|
|
81
|
+
this.length--;return firstItem;}};}
|
|
82
|
+
var log4javascript;(function(){var newLine="\r\n";function Log4JavaScript(){}
|
|
83
|
+
log4javascript=new Log4JavaScript();log4javascript.version="1.4.6";log4javascript.edition="log4javascript_lite";function getExceptionMessage(ex){if(ex.message){return ex.message;}else if(ex.description){return ex.description;}else{return String(ex);}}
|
|
84
|
+
function getUrlFileName(url){var lastSlashIndex=Math.max(url.lastIndexOf("/"),url.lastIndexOf("\\"));return url.substr(lastSlashIndex+1);}
|
|
85
|
+
function getExceptionStringRep(ex){if(ex){var exStr="Exception: "+getExceptionMessage(ex);try{if(ex.lineNumber){exStr+=" on line number "+ex.lineNumber;}
|
|
86
|
+
if(ex.fileName){exStr+=" in file "+getUrlFileName(ex.fileName);}}catch(localEx){}
|
|
87
|
+
if(showStackTraces&&ex.stack){exStr+=newLine+"Stack trace:"+newLine+ex.stack;}
|
|
88
|
+
return exStr;}
|
|
89
|
+
return null;}
|
|
90
|
+
function isError(err){return(err instanceof Error);}
|
|
91
|
+
function bool(obj){return Boolean(obj);}
|
|
92
|
+
var enabled=(typeof log4javascript_disabled!="undefined")&&log4javascript_disabled?false:true;log4javascript.setEnabled=function(enable){enabled=bool(enable);};log4javascript.isEnabled=function(){return enabled;};var showStackTraces=false;log4javascript.setShowStackTraces=function(show){showStackTraces=bool(show);};var Level=function(level,name){this.level=level;this.name=name;};Level.prototype={toString:function(){return this.name;},equals:function(level){return this.level==level.level;},isGreaterOrEqual:function(level){return this.level>=level.level;}};Level.ALL=new Level(Number.MIN_VALUE,"ALL");Level.TRACE=new Level(10000,"TRACE");Level.DEBUG=new Level(20000,"DEBUG");Level.INFO=new Level(30000,"INFO");Level.WARN=new Level(40000,"WARN");Level.ERROR=new Level(50000,"ERROR");Level.FATAL=new Level(60000,"FATAL");Level.OFF=new Level(Number.MAX_VALUE,"OFF");log4javascript.Level=Level;function Appender(){var getConsoleHtmlLines=function(){return['<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">','<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">','<head>','<title>log4javascript</title>','<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />','<!-- Make IE8 behave like IE7, having gone to all the trouble of making IE work -->','<meta http-equiv="X-UA-Compatible" content="IE=7" />','<script type="text/javascript">','//<![CDATA[','var loggingEnabled=true;var messagesBeforeDocLoaded=[];function toggleLoggingEnabled(){setLoggingEnabled($("enableLogging").checked);}','function setLoggingEnabled(enable){loggingEnabled=enable;}','function scrollToLatestEntry(){var l=getLogContainer();if(typeof l.scrollTop!="undefined"){var latestLogEntry=l.lastChild;if(latestLogEntry){l.scrollTop=l.scrollHeight;}}}','function log(logLevel,formattedMessage){if(loggingEnabled){if(loaded){doLog(logLevel,formattedMessage);}else{messagesBeforeDocLoaded.push([logLevel,formattedMessage]);}}}','function doLog(logLevel,formattedMessage){var logEntry=document.createElement("div");logEntry.appendChild(document.createTextNode(formattedMessage));logEntry.className="logentry "+logLevel.name;getLogContainer().appendChild(logEntry);scrollToLatestEntry();}','function mainPageReloaded(){var separator=document.createElement("div");separator.className="separator";separator.innerHTML=" ";getLogContainer().appendChild(separator);}','var loaded=false;var logLevels=["DEBUG","INFO","WARN","ERROR","FATAL"];window.onload=function(){setLogContainerHeight();toggleLoggingEnabled();for(var i=0;i<messagesBeforeDocLoaded.length;i++){doLog(messagesBeforeDocLoaded[i][0],messagesBeforeDocLoaded[i][1]);}','messagesBeforeDocLoaded=[];loaded=true;setTimeout(setLogContainerHeight,20);};function getLogContainer(){return $("log");}','function clearLog(){getLogContainer().innerHTML="";}','function $(id){return document.getElementById(id);}','function getWindowHeight(){if(window.innerHeight){return window.innerHeight;}else if(document.documentElement&&document.documentElement.clientHeight){return document.documentElement.clientHeight;}else if(document.body){return document.body.clientHeight;}','return 0;}','function getChromeHeight(){return $("toolbar").offsetHeight;}','function setLogContainerHeight(){var windowHeight=getWindowHeight();$("body").style.height=getWindowHeight()+"px";getLogContainer().style.height=""+','Math.max(0,windowHeight-getChromeHeight())+"px";}','window.onresize=function(){setLogContainerHeight();};','//]]>','</scr' + 'ipt>','<style type="text/css">','body{background-color:white;color:black;padding:0;margin:0;font-family:tahoma,verdana,arial,helvetica,sans-serif;overflow:hidden}div#toolbar{border-top:solid #ffffff 1px;border-bottom:solid #aca899 1px;background-color:#f1efe7;padding:3px 5px;font-size:68.75%}div#toolbar input.button{padding:0 5px;font-size:100%}div#log{font-family:Courier New,Courier;font-size:75%;width:100%;overflow:auto;clear:both}*.logentry{overflow:visible;white-space:pre}*.TRACE{color:#666666}*.DEBUG{color:green}*.INFO{color:#000099}*.WARN{color:#999900}*.ERROR{color:red}*.FATAL{color:#660066}div#log div.separator{background-color:#cccccc;margin:5px 0;line-height:1px}','</style>','</head>','<body id="body">','<div id="toolbar">','Options:','<input type="checkbox" id="enableLogging" onclick="toggleLoggingEnabled()" class="stateful" checked="checked" title="Enable/disable logging" /><label for="enableLogging" id="enableLoggingLabel">Enable logging</label>','<input type="button" id="clearButton" value="Clear" onclick="clearLog()" class="stateful button" title="Clear all log messages" />','<input type="button" id="closeButton" value="Close" onclick="window.close()" class="stateful button" title="Close the window" />','</div>','<div id="log" class="TRACE DEBUG INFO WARN ERROR FATAL"></div>','</body>','</html>'];};var popUp=null;var popUpsBlocked=false;var popUpClosed=false;var popUpLoaded=false;var complainAboutPopUpBlocking=true;var initialized=false;var isSupported=true;var width=600;var height=400;var focusPopUp=false;var queuedLoggingEvents=new Array();function isLoaded(win){try{return bool(win.loaded);}catch(ex){return false;}}
|
|
93
|
+
function finalInit(){popUpLoaded=true;appendQueuedLoggingEvents();}
|
|
94
|
+
function writeHtml(doc){var lines=getConsoleHtmlLines();doc.open();for(var i=0,len=lines.length;i<len;i++){doc.writeln(lines[i]);}
|
|
95
|
+
doc.close();}
|
|
96
|
+
function pollConsoleWindow(){function pollConsoleWindowLoaded(){if(popUpLoaded){clearInterval(poll);}else if(bool(popUp)&&isLoaded(popUp)){clearInterval(poll);finalInit();}}
|
|
97
|
+
var poll=setInterval(pollConsoleWindowLoaded,100);}
|
|
98
|
+
function init(){var windowProperties="width="+width+",height="+height+",status,resizable";var windowName="log4javascriptLitePopUp"+location.host.replace(/[^a-z0-9]/gi,"_");popUp=window.open("",windowName,windowProperties);popUpClosed=false;if(popUp){if(isLoaded(popUp)){popUp.mainPageReloaded();finalInit();}else{writeHtml(popUp.document);if(isLoaded(popUp)){finalInit();}else{pollConsoleWindow();}}}else{isSupported=false;if(complainAboutPopUpBlocking){alert("log4javascript: pop-up windows appear to be blocked. Please unblock them to use pop-up logging.");}}
|
|
99
|
+
initialized=true;}
|
|
100
|
+
function safeToAppend(){if(!popUpsBlocked&&!popUpClosed){if(popUp.closed){popUpClosed=true;return false;}
|
|
101
|
+
if(!popUpLoaded&&popUp.loaded){popUpLoaded=true;}}
|
|
102
|
+
return!popUpsBlocked&&popUpLoaded&&!popUpClosed;}
|
|
103
|
+
function padWithZeroes(num,len){var str=""+num;while(str.length<len){str="0"+str;}
|
|
104
|
+
return str;}
|
|
105
|
+
function padWithSpaces(str,len){while(str.length<len){str+=" ";}
|
|
106
|
+
return str;}
|
|
107
|
+
this.append=function(loggingEvent){if(!initialized){init();}
|
|
108
|
+
queuedLoggingEvents.push(loggingEvent);if(safeToAppend()){appendQueuedLoggingEvents();}};function appendQueuedLoggingEvents(){if(safeToAppend()){while(queuedLoggingEvents.length>0){var currentLoggingEvent=queuedLoggingEvents.shift();var date=currentLoggingEvent.timeStamp;var formattedDate=padWithZeroes(date.getHours(),2)+":"+
|
|
109
|
+
padWithZeroes(date.getMinutes(),2)+":"+padWithZeroes(date.getSeconds(),2);var formattedMessage=formattedDate+" "+padWithSpaces(currentLoggingEvent.level.name,5)+" - "+currentLoggingEvent.getCombinedMessages();var throwableStringRep=currentLoggingEvent.getThrowableStrRep();if(throwableStringRep){formattedMessage+=newLine+throwableStringRep;}
|
|
110
|
+
popUp.log(currentLoggingEvent.level,formattedMessage);}
|
|
111
|
+
if(focusPopUp){popUp.focus();}}}}
|
|
112
|
+
log4javascript.Appender=Appender;function Logger(){var appender=new Appender();var loggerLevel=Level.ALL;this.log=function(level,params){if(enabled&&level.isGreaterOrEqual(this.getLevel())){var exception;var finalParamIndex=params.length-1;var lastParam=params[params.length-1];if(params.length>1&&isError(lastParam)){exception=lastParam;finalParamIndex--;}
|
|
113
|
+
var messages=[];for(var i=0;i<=finalParamIndex;i++){messages[i]=params[i];}
|
|
114
|
+
var loggingEvent=new LoggingEvent(this,new Date(),level,messages,exception);appender.append(loggingEvent);}};this.setLevel=function(level){loggerLevel=level;};this.getLevel=function(){return loggerLevel;};}
|
|
115
|
+
Logger.prototype={trace:function(){this.log(Level.TRACE,arguments);},debug:function(){this.log(Level.DEBUG,arguments);},info:function(){this.log(Level.INFO,arguments);},warn:function(){this.log(Level.WARN,arguments);},error:function(){this.log(Level.ERROR,arguments);},fatal:function(){this.log(Level.FATAL,arguments);},isEnabledFor:function(level){return level.isGreaterOrEqual(this.getLevel());},isTraceEnabled:function(){return this.isEnabledFor(Level.TRACE);},isDebugEnabled:function(){return this.isEnabledFor(Level.DEBUG);},isInfoEnabled:function(){return this.isEnabledFor(Level.INFO);},isWarnEnabled:function(){return this.isEnabledFor(Level.WARN);},isErrorEnabled:function(){return this.isEnabledFor(Level.ERROR);},isFatalEnabled:function(){return this.isEnabledFor(Level.FATAL);}};var defaultLogger=null;log4javascript.getDefaultLogger=function(){if(!defaultLogger){defaultLogger=new Logger();}
|
|
116
|
+
return defaultLogger;};log4javascript.getLogger=log4javascript.getDefaultLogger;var nullLogger=null;log4javascript.getNullLogger=function(){if(!nullLogger){nullLogger=new Logger();nullLogger.setLevel(Level.OFF);}
|
|
117
|
+
return nullLogger;};var LoggingEvent=function(logger,timeStamp,level,messages,exception){this.logger=logger;this.timeStamp=timeStamp;this.level=level;this.messages=messages;this.exception=exception;};LoggingEvent.prototype={getThrowableStrRep:function(){return this.exception?getExceptionStringRep(this.exception):"";},getCombinedMessages:function(){return(this.messages.length===1)?this.messages[0]:this.messages.join(newLine);}};log4javascript.LoggingEvent=LoggingEvent;window.log4javascript=log4javascript;})();
|
|
118
|
+
</textarea>
|
|
119
|
+
<p class="visibleifabletocopy">
|
|
120
|
+
Press this button to copy the code to the clipboard:
|
|
121
|
+
<input type="button" value="Copy" onclick="copyCode()" />
|
|
122
|
+
</p>
|
|
123
|
+
<p>
|
|
124
|
+
You can either paste the above code inside a script tag:
|
|
125
|
+
</p>
|
|
126
|
+
<pre class="code">
|
|
127
|
+
<script type="text/javascript">
|
|
128
|
+
... [Code here]...
|
|
129
|
+
</script>
|
|
130
|
+
</pre>
|
|
131
|
+
<p>
|
|
132
|
+
... or include the <code>log4javascript_lite.js</code> included in the distribution:
|
|
133
|
+
</p>
|
|
134
|
+
<pre class="code">
|
|
135
|
+
<script type="text/javascript" src="log4javascript_lite.js"></script>
|
|
136
|
+
</pre>
|
|
137
|
+
<pre class="code">
|
|
138
|
+
<script type="text/javascript">
|
|
139
|
+
var log = log4javascript.getDefaultLogger();
|
|
140
|
+
</script>
|
|
141
|
+
</pre>
|
|
142
|
+
<p>
|
|
143
|
+
Using log4javascript Lite is identical to using log4javascript with its default logger:
|
|
144
|
+
</p>
|
|
145
|
+
<pre class="code">
|
|
146
|
+
<script type="text/javascript">
|
|
147
|
+
var log = log4javascript.getDefaultLogger();
|
|
148
|
+
log.debug("What's going on here then?");
|
|
149
|
+
</script>
|
|
150
|
+
</pre>
|
|
151
|
+
<p class="linktotop">
|
|
152
|
+
<a href="#container">Top</a>
|
|
153
|
+
</p>
|
|
154
|
+
</div>
|
|
155
|
+
<div id="api">
|
|
156
|
+
<h2>API</h2>
|
|
157
|
+
<p>
|
|
158
|
+
The functions available in log4javascript Lite make up a small subset of those provided
|
|
159
|
+
by log4javascript proper. Each function is <strong>named and called identically to the equivalent
|
|
160
|
+
function in log4javascript</strong>. Full details can be found in the
|
|
161
|
+
<a href="manual_lite.html">log4javascript Lite manual</a>.
|
|
162
|
+
</p>
|
|
163
|
+
<p class="linktotop">
|
|
164
|
+
<a href="#container">Top</a>
|
|
165
|
+
</p>
|
|
166
|
+
</div>
|
|
167
|
+
</div>
|
|
168
|
+
<div id="footer">
|
|
169
|
+
<span class="externallinkinfo">
|
|
170
|
+
<strong>NB.</strong> All external links open in a new window.
|
|
171
|
+
</span>
|
|
172
|
+
Written by Tim Down. <a href="mailto:tim@log4javascript.org">tim@log4javascript.org</a>
|
|
173
|
+
<br />
|
|
174
|
+
log4javascript is distributed under the <a href="http://www.apache.org/licenses/LICENSE-2.0.html"
|
|
175
|
+
title="Apache License, Version 2.0 (opens in new window)" target="_blank">Apache License,
|
|
176
|
+
Version 2.0</a>
|
|
177
|
+
|
|
178
|
+
</div>
|
|
179
|
+
</div>
|
|
180
|
+
|
|
181
|
+
</body>
|
|
182
|
+
</html>
|