summaryrefslogtreecommitdiff
path: root/frontend/beta/js/YUI/logger.js
blob: a2b40b29cccdb0450950d73821ab18c485bc127a (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
/*

Copyright (c) 2006, Yahoo! Inc. All rights reserved.

Code licensed under the BSD License:

http://developer.yahoo.com/yui/license.txt

version: 0.12.0

*/



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

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

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



/**

 * The LogMsg class defines a single log message.

 *

 * @class LogMsg

 * @constructor

 * @param oConfigs {Object} Object literal of configuration params.

 */

 YAHOO.widget.LogMsg = function(oConfigs) {

    // Parse configs

    if (typeof oConfigs == "object") {

        for(var param in oConfigs) {

            this[param] = oConfigs[param];

        }

    }

 };

 

/////////////////////////////////////////////////////////////////////////////

//

// Public member variables

//

/////////////////////////////////////////////////////////////////////////////



/**

 * Log message.

 *

 * @property msg

 * @type String

 */

YAHOO.widget.LogMsg.prototype.msg = null;

 

/**

 * Log timestamp.

 *

 * @property time

 * @type Date

 */

YAHOO.widget.LogMsg.prototype.time = null;



/**

 * Log category.

 *

 * @property category

 * @type String

 */

YAHOO.widget.LogMsg.prototype.category = null;



/**

 * Log source. The first word passed in as the source argument.

 *

 * @property source

 * @type String

 */

YAHOO.widget.LogMsg.prototype.source = null;



/**

 * Log source detail. The remainder of the string passed in as the source argument, not

 * including the first word (if any).

 *

 * @property sourceDetail

 * @type String

 */

YAHOO.widget.LogMsg.prototype.sourceDetail = null;



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

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

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



/**

 * The LogWriter class provides a mechanism to log messages through

 * YAHOO.widget.Logger from a named source.

 *

 * @class LogWriter

 * @constructor

 * @param sSource {String} Source of LogWriter instance.

 */

YAHOO.widget.LogWriter = function(sSource) {

    if(!sSource) {

        YAHOO.log("Could not instantiate LogWriter due to invalid source.",

            "error", "LogWriter");

        return;

    }

    this._source = sSource;

 };



/////////////////////////////////////////////////////////////////////////////

//

// Public methods

//

/////////////////////////////////////////////////////////////////////////////



 /**

 * Public accessor to the unique name of the LogWriter instance.

 *

 * @method toString

 * @return {String} Unique name of the LogWriter instance.

 */

YAHOO.widget.LogWriter.prototype.toString = function() {

    return "LogWriter " + this._sSource;

};



/**

 * Logs a message attached to the source of the LogWriter.

 *

 * @method log

 * @param sMsg {String} The log message.

 * @param sCategory {String} Category name.

 */

YAHOO.widget.LogWriter.prototype.log = function(sMsg, sCategory) {

    YAHOO.widget.Logger.log(sMsg, sCategory, this._source);

};



/**

 * Public accessor to get the source name.

 *

 * @method getSource

 * @return {String} The LogWriter source.

 */

YAHOO.widget.LogWriter.prototype.getSource = function() {

    return this._sSource;

};



/**

 * Public accessor to set the source name.

 *

 * @method setSource

 * @param sSource {String} Source of LogWriter instance.

 */

YAHOO.widget.LogWriter.prototype.setSource = function(sSource) {

    if(!sSource) {

        YAHOO.log("Could not set source due to invalid source.", "error", this.toString());

        return;

    }

    else {

        this._sSource = sSource;

    }

};



/////////////////////////////////////////////////////////////////////////////

//

// Private member variables

//

/////////////////////////////////////////////////////////////////////////////



/**

 * Source of the LogWriter instance.

 *

 * @property _source

 * @type String

 * @private

 */

YAHOO.widget.LogWriter.prototype._source = null;







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

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

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



/**

 * The LogReader class provides UI to read messages logged to YAHOO.widget.Logger.

 *

 * @class LogReader

 * @constructor

 * @param elContainer {HTMLElement} (optional) DOM element reference of an existing DIV.

 * @param elContainer {String} (optional) String ID of an existing DIV.

 * @param oConfigs {Object} (optional) Object literal of configuration params.

 */

YAHOO.widget.LogReader = function(elContainer, oConfigs) {

    var oSelf = this;

    this._sName = YAHOO.widget.LogReader._index;

    YAHOO.widget.LogReader._index++;



    // Parse config vars here

    if (typeof oConfigs == "object") {

        for(var param in oConfigs) {

            this[param] = oConfigs[param];

        }

    }



    // Attach container...

    if(elContainer) {

        if(typeof elContainer == "string") {

            this._elContainer = document.getElementById(elContainer);

        }

        else if(elContainer.tagName) {

            this._elContainer = elContainer;

        }

        this._elContainer.className = "yui-log";

    }

    // ...or create container from scratch

    if(!this._elContainer) {

        if(YAHOO.widget.LogReader._elDefaultContainer) {

            this._elContainer =  YAHOO.widget.LogReader._elDefaultContainer;

        }

        else {

            this._elContainer = document.body.appendChild(document.createElement("div"));

            this._elContainer.id = "yui-log";

            this._elContainer.className = "yui-log";



            YAHOO.widget.LogReader._elDefaultContainer = this._elContainer;

        }



        // If implementer has provided container values, trust and set those

        var containerStyle = this._elContainer.style;

        if(this.width) {

            containerStyle.width = this.width;

        }

        if(this.left) {

            containerStyle.left = this.left;

        }

        if(this.right) {

            containerStyle.right = this.right;

        }

        if(this.bottom) {

            containerStyle.bottom = this.bottom;

        }

        if(this.top) {

            containerStyle.top = this.top;

        }

        if(this.fontSize) {

            containerStyle.fontSize = this.fontSize;

        }

    }



    if(this._elContainer) {

        // Create header

        if(!this._elHd) {

            this._elHd = this._elContainer.appendChild(document.createElement("div"));

            this._elHd.id = "yui-log-hd" + this._sName;

            this._elHd.className = "yui-log-hd";



            this._elCollapse = this._elHd.appendChild(document.createElement("div"));

            this._elCollapse.className = "yui-log-btns";



            this._btnCollapse = document.createElement("input");

            this._btnCollapse.type = "button";

            this._btnCollapse.style.fontSize =

                YAHOO.util.Dom.getStyle(this._elContainer,"fontSize");

            this._btnCollapse.className = "yui-log-button";

            this._btnCollapse.value = "Collapse";

            this._btnCollapse = this._elCollapse.appendChild(this._btnCollapse);

            YAHOO.util.Event.addListener(

                oSelf._btnCollapse,'click',oSelf._onClickCollapseBtn,oSelf);



            this._title = this._elHd.appendChild(document.createElement("h4"));

            this._title.innerHTML = "Logger Console";



            // If Drag and Drop utility is available...

            // ...and this container was created from scratch...

            // ...then make the header draggable

            if(YAHOO.util.DD &&

            (YAHOO.widget.LogReader._elDefaultContainer == this._elContainer)) {

                var ylog_dd = new YAHOO.util.DD(this._elContainer.id);

                ylog_dd.setHandleElId(this._elHd.id);

                this._elHd.style.cursor = "move";

            }

        }

        // Ceate console

        if(!this._elConsole) {

            this._elConsole =

                this._elContainer.appendChild(document.createElement("div"));

            this._elConsole.className = "yui-log-bd";



            // If implementer has provided console, trust and set those

            if(this.height) {

                this._elConsole.style.height = this.height;

            }

        }

        // Don't create footer if disabled

        if(!this._elFt && this.footerEnabled) {

            this._elFt = this._elContainer.appendChild(document.createElement("div"));

            this._elFt.className = "yui-log-ft";



            this._elBtns = this._elFt.appendChild(document.createElement("div"));

            this._elBtns.className = "yui-log-btns";



            this._btnPause = document.createElement("input");

            this._btnPause.type = "button";

            this._btnPause.style.fontSize =

                YAHOO.util.Dom.getStyle(this._elContainer,"fontSize");

            this._btnPause.className = "yui-log-button";

            this._btnPause.value = "Pause";

            this._btnPause = this._elBtns.appendChild(this._btnPause);

            YAHOO.util.Event.addListener(

                oSelf._btnPause,'click',oSelf._onClickPauseBtn,oSelf);



            this._btnClear = document.createElement("input");

            this._btnClear.type = "button";

            this._btnClear.style.fontSize =

                YAHOO.util.Dom.getStyle(this._elContainer,"fontSize");

            this._btnClear.className = "yui-log-button";

            this._btnClear.value = "Clear";

            this._btnClear = this._elBtns.appendChild(this._btnClear);

            YAHOO.util.Event.addListener(

                oSelf._btnClear,'click',oSelf._onClickClearBtn,oSelf);



            this._elCategoryFilters = this._elFt.appendChild(document.createElement("div"));

            this._elCategoryFilters.className = "yui-log-categoryfilters";

            this._elSourceFilters = this._elFt.appendChild(document.createElement("div"));

            this._elSourceFilters.className = "yui-log-sourcefilters";

        }

    }



    // Initialize internal vars

    if(!this._buffer) {

        this._buffer = []; // output buffer

    }

    // Timestamp of last log message to console

    this._lastTime = YAHOO.widget.Logger.getStartTime(); 

    

    // Subscribe to Logger custom events

    YAHOO.widget.Logger.newLogEvent.subscribe(this._onNewLog, this);

    YAHOO.widget.Logger.logResetEvent.subscribe(this._onReset, this);



    // Initialize category filters

    this._categoryFilters = [];

    var catsLen = YAHOO.widget.Logger.categories.length;

    if(this._elCategoryFilters) {

        for(var i=0; i < catsLen; i++) {

            this._createCategoryCheckbox(YAHOO.widget.Logger.categories[i]);

        }

    }

    // Initialize source filters

    this._sourceFilters = [];

    var sourcesLen = YAHOO.widget.Logger.sources.length;

    if(this._elSourceFilters) {

        for(var j=0; j < sourcesLen; j++) {

            this._createSourceCheckbox(YAHOO.widget.Logger.sources[j]);

        }

    }

    YAHOO.widget.Logger.categoryCreateEvent.subscribe(this._onCategoryCreate, this);

    YAHOO.widget.Logger.sourceCreateEvent.subscribe(this._onSourceCreate, this);



    this._filterLogs();

    YAHOO.log("LogReader initialized", null, this.toString());

};



/////////////////////////////////////////////////////////////////////////////

//

// Public member variables

//

/////////////////////////////////////////////////////////////////////////////



/**

 * Whether or not the log reader is enabled to output log messages.

 *

 * @property logReaderEnabled

 * @type Boolean

 * @default true

 */

YAHOO.widget.LogReader.prototype.logReaderEnabled = true;



/**

 * Public member to access CSS width of the log reader container.

 *

 * @property width

 * @type String

 */

YAHOO.widget.LogReader.prototype.width = null;



/**

 * Public member to access CSS height of the log reader container.

 *

 * @property height

 * @type String

 */

YAHOO.widget.LogReader.prototype.height = null;



/**

 * Public member to access CSS top position of the log reader container.

 *

 * @property top

 * @type String

 */

YAHOO.widget.LogReader.prototype.top = null;



/**

 * Public member to access CSS left position of the log reader container.

 *

 * @property left

 * @type String

 */

YAHOO.widget.LogReader.prototype.left = null;



/**

 * Public member to access CSS right position of the log reader container.

 *

 * @property right

 * @type String

 */

YAHOO.widget.LogReader.prototype.right = null;



/**

 * Public member to access CSS bottom position of the log reader container.

 *

 * @property bottom

 * @type String

 */

YAHOO.widget.LogReader.prototype.bottom = null;



/**

 * Public member to access CSS font size of the log reader container.

 *

 * @property fontSize

 * @type String

 */

YAHOO.widget.LogReader.prototype.fontSize = null;



/**

 * Whether or not the footer UI is enabled for the log reader.

 *

 * @property footerEnabled

 * @type Boolean

 * @default true

 */

YAHOO.widget.LogReader.prototype.footerEnabled = true;



/**

 * Whether or not output is verbose (more readable). Setting to true will make

 * output more compact (less readable).

 *

 * @property verboseOutput

 * @type Boolean

 * @default true

 */

YAHOO.widget.LogReader.prototype.verboseOutput = true;



/**

 * Whether or not newest message is printed on top.

 *

 * @property newestOnTop

 * @type Boolean

 */

YAHOO.widget.LogReader.prototype.newestOnTop = true;



/**

 * Maximum number of messages a LogReader console will display.

 *

 * @property thresholdMax

 * @type Number

 * @default 500

 */

YAHOO.widget.LogReader.prototype.thresholdMax = 500;



/**

 * When a LogReader console reaches its thresholdMax, it will clear out messages

 * and print out the latest thresholdMin number of messages.

 *

 * @property thresholdMin

 * @type Number

 * @default 100

 */

YAHOO.widget.LogReader.prototype.thresholdMin = 100;



/////////////////////////////////////////////////////////////////////////////

//

// Public methods

//

/////////////////////////////////////////////////////////////////////////////



 /**

 * Public accessor to the unique name of the LogReader instance.

 *

 * @method toString

 * @return {String} Unique name of the LogReader instance.

 */

YAHOO.widget.LogReader.prototype.toString = function() {

    return "LogReader instance" + this._sName;

};

/**

 * Pauses output of log messages. While paused, log messages are not lost, but

 * get saved to a buffer and then output upon resume of log reader.

 *

 * @method pause

 */

YAHOO.widget.LogReader.prototype.pause = function() {

    this._timeout = null;

    this.logReaderEnabled = false;

};



/**

 * Resumes output of log messages, including outputting any log messages that

 * have been saved to buffer while paused.

 *

 * @method resume

 */

YAHOO.widget.LogReader.prototype.resume = function() {

    this.logReaderEnabled = true;

    this._printBuffer();

};



/**

 * Hides UI of log reader. Logging functionality is not disrupted.

 *

 * @method hide

 */

YAHOO.widget.LogReader.prototype.hide = function() {

    this._elContainer.style.display = "none";

};



/**

 * Shows UI of log reader. Logging functionality is not disrupted.

 *

 * @method show

 */

YAHOO.widget.LogReader.prototype.show = function() {

    this._elContainer.style.display = "block";

};



/**

 * Updates title to given string.

 *

 * @method setTitle

 * @param sTitle {String} New title.

 */

YAHOO.widget.LogReader.prototype.setTitle = function(sTitle) {

    this._title.innerHTML = this.html2Text(sTitle);

};



/**

 * Gets timestamp of the last log.

 *

 * @method getLastTime

 * @return {Date} Timestamp of the last log.

 */

YAHOO.widget.LogReader.prototype.getLastTime = function() {

    return this._lastTime;

};



/**

 * Formats message string to HTML for output to console.

 *

 * @method formatMsg

 * @param oLogMsg {Object} Log message object.

 * @return {String} HTML-formatted message for output to console.

 */

YAHOO.widget.LogReader.prototype.formatMsg = function(oLogMsg) {

    var category = oLogMsg.category;

    

    // Label for color-coded display

    var label = category.substring(0,4).toUpperCase();



    // Calculate the elapsed time to be from the last item that passed through the filter,

    // not the absolute previous item in the stack



    var time = oLogMsg.time;

    if (time.toLocaleTimeString) {

        var localTime  = time.toLocaleTimeString();

    }

    else {

        localTime = time.toString();

    }



    var msecs = time.getTime();

    var startTime = YAHOO.widget.Logger.getStartTime();

    var totalTime = msecs - startTime;

    var elapsedTime = msecs - this.getLastTime();



    var source = oLogMsg.source;

    var sourceDetail = oLogMsg.sourceDetail;

    var sourceAndDetail = (sourceDetail) ?

        source + " " + sourceDetail : source;

        

    // Escape HTML entities in the log message itself for output to console

    var msg = this.html2Text(oLogMsg.msg);



    // Verbose output includes extra line breaks

    var output =  (this.verboseOutput) ?

        ["<p><span class='", category, "'>", label, "</span> ",

        totalTime, "ms (+", elapsedTime, ") ",

        localTime, ": ",

        "</p><p>",

        sourceAndDetail,

        ": </p><p>",

        msg,

        "</p>"] :



        ["<p><span class='", category, "'>", label, "</span> ",

        totalTime, "ms (+", elapsedTime, ") ",

        localTime, ": ",

        sourceAndDetail, ": ",

        msg,"</p>"];



    return output.join("");

};



/**

 * Converts input chars "<", ">", and "&" to HTML entities.

 *

 * @method html2Text

 * @param sHtml {String} String to convert.

 * @private

 */

YAHOO.widget.LogReader.prototype.html2Text = function(sHtml) {

    if(sHtml) {

        sHtml += "";

        return sHtml.replace(/&/g, "&#38;").replace(/</g, "&#60;").replace(/>/g, "&#62;");

    }

    return "";

};



/////////////////////////////////////////////////////////////////////////////

//

// Private member variables

//

/////////////////////////////////////////////////////////////////////////////



/**

 * Internal class member to index multiple log reader instances.

 *

 * @property _memberName

 * @static

 * @type Number

 * @default 0

 * @private

 */

YAHOO.widget.LogReader._index = 0;



/**

 * Name of LogReader instance.

 *

 * @property _sName

 * @type String

 * @private

 */

YAHOO.widget.LogReader.prototype._sName = null;



/**

 * A class member shared by all log readers if a container needs to be

 * created during instantiation. Will be null if a container element never needs to

 * be created on the fly, such as when the implementer passes in their own element.

 *

 * @property _elDefaultContainer

 * @type HTMLElement

 * @private

 */

YAHOO.widget.LogReader._elDefaultContainer = null;



/**

 * Buffer of log message objects for batch output.

 *

 * @property _buffer

 * @type Object[]

 * @private

 */

YAHOO.widget.LogReader.prototype._buffer = null;



/**

 * Number of log messages output to console.

 *

 * @property _consoleMsgCount

 * @type Number

 * @default 0

 * @private

 */

YAHOO.widget.LogReader.prototype._consoleMsgCount = 0;



/**

 * Date of last output log message.

 *

 * @property _lastTime

 * @type Date

 * @private

 */

YAHOO.widget.LogReader.prototype._lastTime = null;



/**

 * Batched output timeout ID.

 *

 * @property _timeout

 * @type Number

 * @private

 */

YAHOO.widget.LogReader.prototype._timeout = null;



/**

 * Array of filters for log message categories.

 *

 * @property _categoryFilters

 * @type String[]

 * @private

 */

YAHOO.widget.LogReader.prototype._categoryFilters = null;



/**

 * Array of filters for log message sources.

 *

 * @property _sourceFilters

 * @type String[]

 * @private

 */

YAHOO.widget.LogReader.prototype._sourceFilters = null;



/**

 * Log reader container element.

 *

 * @property _elContainer

 * @type HTMLElement

 * @private

 */

YAHOO.widget.LogReader.prototype._elContainer = null;



/**

 * Log reader header element.

 *

 * @property _elHd

 * @type HTMLElement

 * @private

 */

YAHOO.widget.LogReader.prototype._elHd = null;



/**

 * Log reader collapse element.

 *

 * @property _elCollapse

 * @type HTMLElement

 * @private

 */

YAHOO.widget.LogReader.prototype._elCollapse = null;



/**

 * Log reader collapse button element.

 *

 * @property _btnCollapse

 * @type HTMLElement

 * @private

 */

YAHOO.widget.LogReader.prototype._btnCollapse = null;



/**

 * Log reader title header element.

 *

 * @property _title

 * @type HTMLElement

 * @private

 */

YAHOO.widget.LogReader.prototype._title = null;



/**

 * Log reader console element.

 *

 * @property _elConsole

 * @type HTMLElement

 * @private

 */

YAHOO.widget.LogReader.prototype._elConsole = null;



/**

 * Log reader footer element.

 *

 * @property _elFt

 * @type HTMLElement

 * @private

 */

YAHOO.widget.LogReader.prototype._elFt = null;



/**

 * Log reader buttons container element.

 *

 * @property _elBtns

 * @type HTMLElement

 * @private

 */

YAHOO.widget.LogReader.prototype._elBtns = null;



/**

 * Container element for log reader category filter checkboxes.

 *

 * @property _elCategoryFilters

 * @type HTMLElement

 * @private

 */

YAHOO.widget.LogReader.prototype._elCategoryFilters = null;



/**

 * Container element for log reader source filter checkboxes.

 *

 * @property _elSourceFilters

 * @type HTMLElement

 * @private

 */

YAHOO.widget.LogReader.prototype._elSourceFilters = null;



/**

 * Log reader pause button element.

 *

 * @property _btnPause

 * @type HTMLElement

 * @private

 */

YAHOO.widget.LogReader.prototype._btnPause = null;



/**

 * Clear button element.

 *

 * @property _btnClear

 * @type HTMLElement

 * @private

 */

YAHOO.widget.LogReader.prototype._btnClear = null;



/////////////////////////////////////////////////////////////////////////////

//

// Private methods

//

/////////////////////////////////////////////////////////////////////////////



/**

 * Creates the UI for a category filter in the log reader footer element.

 *

 * @method _createCategoryCheckbox

 * @param sCategory {String} Category name.

 * @private

 */

YAHOO.widget.LogReader.prototype._createCategoryCheckbox = function(sCategory) {

    var oSelf = this;



    if(this._elFt) {

        var elParent = this._elCategoryFilters;

        var filters = this._categoryFilters;



        var elFilter = elParent.appendChild(document.createElement("span"));

        elFilter.className = "yui-log-filtergrp";

            // Append el at the end so IE 5.5 can set "type" attribute

            // and THEN set checked property

            var chkCategory = document.createElement("input");

            chkCategory.id = "yui-log-filter-" + sCategory + this._sName;

            chkCategory.className = "yui-log-filter-" + sCategory;

            chkCategory.type = "checkbox";

            chkCategory.category = sCategory;

            chkCategory = elFilter.appendChild(chkCategory);

            chkCategory.checked = true;



            // Add this checked filter to the internal array of filters

            filters.push(sCategory);

            // Subscribe to the click event

            YAHOO.util.Event.addListener(chkCategory,'click',oSelf._onCheckCategory,oSelf);



            // Create and class the text label

            var lblCategory = elFilter.appendChild(document.createElement("label"));

            lblCategory.htmlFor = chkCategory.id;

            lblCategory.className = sCategory;

            lblCategory.innerHTML = sCategory;

    }

};



/**

 * Creates a checkbox in the log reader footer element to filter by source.

 *

 * @method _createSourceCheckbox

 * @param sSource {String} Source name.

 * @private

 */

YAHOO.widget.LogReader.prototype._createSourceCheckbox = function(sSource) {

    var oSelf = this;



    if(this._elFt) {

        var elParent = this._elSourceFilters;

        var filters = this._sourceFilters;



        var elFilter = elParent.appendChild(document.createElement("span"));

        elFilter.className = "yui-log-filtergrp";



        // Append el at the end so IE 5.5 can set "type" attribute

        // and THEN set checked property

        var chkSource = document.createElement("input");

        chkSource.id = "yui-log-filter" + sSource + this._sName;

        chkSource.className = "yui-log-filter" + sSource;

        chkSource.type = "checkbox";

        chkSource.source = sSource;

        chkSource = elFilter.appendChild(chkSource);

        chkSource.checked = true;



        // Add this checked filter to the internal array of filters

        filters.push(sSource);

        // Subscribe to the click event

        YAHOO.util.Event.addListener(chkSource,'click',oSelf._onCheckSource,oSelf);



        // Create and class the text label

        var lblSource = elFilter.appendChild(document.createElement("label"));

        lblSource.htmlFor = chkSource.id;

        lblSource.className = sSource;

        lblSource.innerHTML = sSource;

    }

};



/**

 * Reprints all log messages in the stack through filters.

 *

 * @method _filterLogs

 * @private

 */

YAHOO.widget.LogReader.prototype._filterLogs = function() {

    // Reprint stack with new filters

    if (this._elConsole !== null) {

        this._clearConsole();

        this._printToConsole(YAHOO.widget.Logger.getStack());

    }

};



/**

 * Clears all outputted log messages from the console and resets the time of the

 * last output log message.

 *

 * @method _clearConsole

 * @private

 */

YAHOO.widget.LogReader.prototype._clearConsole = function() {

    // Clear the buffer of any pending messages

    this._timeout = null;

    this._buffer = [];

    this._consoleMsgCount = 0;



    // Reset the rolling timer

    this._lastTime = YAHOO.widget.Logger.getStartTime();



    var elConsole = this._elConsole;

    while(elConsole.hasChildNodes()) {

        elConsole.removeChild(elConsole.firstChild);

    }

};



/**

 * Sends buffer of log messages to output and clears buffer.

 *

 * @method _printBuffer

 * @private

 */

YAHOO.widget.LogReader.prototype._printBuffer = function() {

    this._timeout = null;



    if(this._elConsole !== null) {

        var thresholdMax = this.thresholdMax;

        thresholdMax = (thresholdMax && !isNaN(thresholdMax)) ? thresholdMax : 500;

        if(this._consoleMsgCount < thresholdMax) {

            var entries = [];

            for (var i=0; i<this._buffer.length; i++) {

                entries[i] = this._buffer[i];

            }

            this._buffer = [];

            this._printToConsole(entries);

        }

        else {

            this._filterLogs();

        }

        

        if(!this.newestOnTop) {

            this._elConsole.scrollTop = this._elConsole.scrollHeight;

        }

    }

};



/**

 * Cycles through an array of log messages, and outputs each one to the console

 * if its category has not been filtered out.

 *

 * @method _printToConsole

 * @param aEntries {Object[]} Array of LogMsg objects to output to console.

 * @private

 */

YAHOO.widget.LogReader.prototype._printToConsole = function(aEntries) {

    // Manage the number of messages displayed in the console

    var entriesLen = aEntries.length;

    var thresholdMin = this.thresholdMin;

    if(isNaN(thresholdMin) || (thresholdMin > this.thresholdMax)) {

        thresholdMin = 0;

    }

    var entriesStartIndex = (entriesLen > thresholdMin) ? (entriesLen - thresholdMin) : 0;

    

    // Iterate through all log entries 

    var sourceFiltersLen = this._sourceFilters.length;

    var categoryFiltersLen = this._categoryFilters.length;

    for(var i=entriesStartIndex; i<entriesLen; i++) {

        // Print only the ones that filter through

        var okToPrint = false;

        var okToFilterCats = false;



        // Get log message details

        var entry = aEntries[i];

        var source = entry.source;

        var category = entry.category;



        for(var j=0; j<sourceFiltersLen; j++) {

            if(source == this._sourceFilters[j]) {

                okToFilterCats = true;

                break;

            }

        }

        if(okToFilterCats) {

            for(var k=0; k<categoryFiltersLen; k++) {

                if(category == this._categoryFilters[k]) {

                    okToPrint = true;

                    break;

                }

            }

        }

        if(okToPrint) {

            var output = this.formatMsg(entry);



            // Verbose output uses <code> tag instead of <pre> tag (for wrapping)

            var container = (this.verboseOutput) ? "CODE" : "PRE";

            var oNewElement = (this.newestOnTop) ?

                this._elConsole.insertBefore(

                    document.createElement(container),this._elConsole.firstChild):

                this._elConsole.appendChild(document.createElement(container));



            oNewElement.innerHTML = output;

            this._consoleMsgCount++;

            this._lastTime = entry.time.getTime();

        }

    }

};



/////////////////////////////////////////////////////////////////////////////

//

// Private event handlers

//

/////////////////////////////////////////////////////////////////////////////



/**

 * Handles Logger's categoryCreateEvent.

 *

 * @method _onCategoryCreate

 * @param sType {String} The event.

 * @param aArgs {Object[]} Data passed from event firer.

 * @param oSelf {Object} The LogReader instance.

 * @private

 */

YAHOO.widget.LogReader.prototype._onCategoryCreate = function(sType, aArgs, oSelf) {

    var category = aArgs[0];

    if(oSelf._elFt) {

        oSelf._createCategoryCheckbox(category);

    }

};



/**

 * Handles Logger's sourceCreateEvent.

 *

 * @method _onSourceCreate

 * @param sType {String} The event.

 * @param aArgs {Object[]} Data passed from event firer.

 * @param oSelf {Object} The LogReader instance.

 * @private

 */

YAHOO.widget.LogReader.prototype._onSourceCreate = function(sType, aArgs, oSelf) {

    var source = aArgs[0];

    if(oSelf._elFt) {

        oSelf._createSourceCheckbox(source);

    }

};



/**

 * Handles check events on the category filter checkboxes.

 *

 * @method _onCheckCategory

 * @param v {HTMLEvent} The click event.

 * @param oSelf {Object} The LogReader instance.

 * @private

 */

YAHOO.widget.LogReader.prototype._onCheckCategory = function(v, oSelf) {

    var newFilter = this.category;

    var filtersArray = oSelf._categoryFilters;



    if(!this.checked) { // Remove category from filters

        for(var i=0; i<filtersArray.length; i++) {

            if(newFilter == filtersArray[i]) {

                filtersArray.splice(i, 1);

                break;

            }

        }

    }

    else { // Add category to filters

        filtersArray.push(newFilter);

    }

    oSelf._filterLogs();

};



/**

 * Handles check events on the category filter checkboxes.

 *

 * @method _onCheckSource

 * @param v {HTMLEvent} The click event.

 * @param oSelf {Object} The log reader instance.

 * @private

 */

YAHOO.widget.LogReader.prototype._onCheckSource = function(v, oSelf) {

    var newFilter = this.source;

    var filtersArray = oSelf._sourceFilters;



    if(!this.checked) { // Remove category from filters

        for(var i=0; i<filtersArray.length; i++) {

            if(newFilter == filtersArray[i]) {

                filtersArray.splice(i, 1);

                break;

            }

        }

    }

    else { // Add category to filters

        filtersArray.push(newFilter);

    }

    oSelf._filterLogs();

};



/**

 * Handles click events on the collapse button.

 *

 * @method _onClickCollapseBtn

 * @param v {HTMLEvent} The click event.

 * @param oSelf {Object} The LogReader instance

 * @private

 */

YAHOO.widget.LogReader.prototype._onClickCollapseBtn = function(v, oSelf) {

    var btn = oSelf._btnCollapse;

    if(btn.value == "Expand") {

        oSelf._elConsole.style.display = "block";

        if(oSelf._elFt) {

            oSelf._elFt.style.display = "block";

        }

        btn.value = "Collapse";

    }

    else {

        oSelf._elConsole.style.display = "none";

        if(oSelf._elFt) {

            oSelf._elFt.style.display = "none";

        }

        btn.value = "Expand";

    }

};



/**

 * Handles click events on the pause button.

 *

 * @method _onClickPauseBtn

 * @param v {HTMLEvent} The click event.

 * @param oSelf {Object} The LogReader instance.

 * @private

 */

YAHOO.widget.LogReader.prototype._onClickPauseBtn = function(v, oSelf) {

    var btn = oSelf._btnPause;

    if(btn.value == "Resume") {

        oSelf.resume();

        btn.value = "Pause";

    }

    else {

        oSelf.pause();

        btn.value = "Resume";

    }

};



/**

 * Handles click events on the clear button.

 *

 * @method _onClickClearBtn

 * @param v {HTMLEvent} The click event.

 * @param oSelf {Object} The LogReader instance.

 * @private

 */

YAHOO.widget.LogReader.prototype._onClickClearBtn = function(v, oSelf) {

    oSelf._clearConsole();

};



/**

 * Handles Logger's newLogEvent.

 *

 * @method _onNewLog

 * @param sType {String} The event.

 * @param aArgs {Object[]} Data passed from event firer.

 * @param oSelf {Object} The LogReader instance.

 * @private

 */

YAHOO.widget.LogReader.prototype._onNewLog = function(sType, aArgs, oSelf) {

    var logEntry = aArgs[0];

    oSelf._buffer.push(logEntry);



    if (oSelf.logReaderEnabled === true && oSelf._timeout === null) {

        oSelf._timeout = setTimeout(function(){oSelf._printBuffer();}, 100);

    }

};



/**

 * Handles Logger's resetEvent.

 *

 * @method _onReset

 * @param sType {String} The event.

 * @param aArgs {Object[]} Data passed from event firer.

 * @param oSelf {Object} The LogReader instance.

 * @private

 */

YAHOO.widget.LogReader.prototype._onReset = function(sType, aArgs, oSelf) {

    oSelf._filterLogs();

};

 /**

 * The Logger widget provides a simple way to read or write log messages in

 * JavaScript code. Integration with the YUI Library's debug builds allow

 * implementers to access under-the-hood events, errors, and debugging messages.

 * Output may be read through a LogReader console and/or output to a browser

 * console.

 *

 * @module logger

 * @requires yahoo, event, dom

 * @optional dragdrop

 * @namespace YAHOO.widget

 * @title Logger Widget

 */



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

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

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



/**

 * The singleton Logger class provides core log management functionality. Saves

 * logs written through the global YAHOO.log function or written by a LogWriter

 * instance. Provides access to logs for reading by a LogReader instance or

 * native browser console such as the Firebug extension to Firefox or Safari's

 * JavaScript console through integration with the console.log() method.

 *

 * @class Logger

 * @static

 */

YAHOO.widget.Logger = {

    // Initialize members

    loggerEnabled: true,

    _browserConsoleEnabled: false,

    categories: ["info","warn","error","time","window"],

    sources: ["global"],

    _stack: [], // holds all log msgs

    maxStackEntries: 2500,

    _startTime: new Date().getTime(), // static start timestamp

    _lastTime: null // timestamp of last logged message

};



/////////////////////////////////////////////////////////////////////////////

//

// Public methods

//

/////////////////////////////////////////////////////////////////////////////

/**

 * Saves a log message to the stack and fires newLogEvent. If the log message is

 * assigned to an unknown category, creates a new category. If the log message is

 * from an unknown source, creates a new source.  If browser console is enabled,

 * outputs the log message to browser console.

 *

 * @method log

 * @param sMsg {String} The log message.

 * @param sCategory {String} Category of log message, or null.

 * @param sSource {String} Source of LogWriter, or null if global.

 */

YAHOO.widget.Logger.log = function(sMsg, sCategory, sSource) {

    if(this.loggerEnabled) {

        if(!sCategory) {

            sCategory = "info"; // default category

        }

        else {

            sCategory = sCategory.toLocaleLowerCase();

            if(this._isNewCategory(sCategory)) {

                this._createNewCategory(sCategory);

            }

        }

        var sClass = "global"; // default source

        var sDetail = null;

        if(sSource) {

            var spaceIndex = sSource.indexOf(" ");

            if(spaceIndex > 0) {

                // Substring until first space

                sClass = sSource.substring(0,spaceIndex);

                // The rest of the source

                sDetail = sSource.substring(spaceIndex,sSource.length);

            }

            else {

                sClass = sSource;

            }

            if(this._isNewSource(sClass)) {

                this._createNewSource(sClass);

            }

        }



        var timestamp = new Date();

        var logEntry = new YAHOO.widget.LogMsg({

            msg: sMsg,

            time: timestamp,

            category: sCategory,

            source: sClass,

            sourceDetail: sDetail

        });



        var stack = this._stack;

        var maxStackEntries = this.maxStackEntries;

        if(maxStackEntries && !isNaN(maxStackEntries) &&

            (stack.length >= maxStackEntries)) {

            stack.shift();

        }

        stack.push(logEntry);

        this.newLogEvent.fire(logEntry);



        if(this._browserConsoleEnabled) {

            this._printToBrowserConsole(logEntry);

        }

        return true;

    }

    else {

        return false;

    }

};



/**

 * Resets internal stack and startTime, enables Logger, and fires logResetEvent.

 *

 * @method reset

 */

YAHOO.widget.Logger.reset = function() {

    this._stack = [];

    this._startTime = new Date().getTime();

    this.loggerEnabled = true;

    this.log("Logger reset");

    this.logResetEvent.fire();

};



/**

 * Public accessor to internal stack of log message objects.

 *

 * @method getStack

 * @return {Object[]} Array of log message objects.

 */

YAHOO.widget.Logger.getStack = function() {

    return this._stack;

};



/**

 * Public accessor to internal start time.

 *

 * @method getStartTime

 * @return {Date} Internal date of when Logger singleton was initialized.

 */

YAHOO.widget.Logger.getStartTime = function() {

    return this._startTime;

};



/**

 * Disables output to the browser's global console.log() function, which is used

 * by the Firebug extension to Firefox as well as Safari.

 *

 * @method disableBrowserConsole

 */

YAHOO.widget.Logger.disableBrowserConsole = function() {

    YAHOO.log("Logger output to the function console.log() has been disabled.");

    this._browserConsoleEnabled = false;

};



/**

 * Enables output to the browser's global console.log() function, which is used

 * by the Firebug extension to Firefox as well as Safari.

 *

 * @method enableBrowserConsole

 */

YAHOO.widget.Logger.enableBrowserConsole = function() {

    this._browserConsoleEnabled = true;

    YAHOO.log("Logger output to the function console.log() has been enabled.");

};



/////////////////////////////////////////////////////////////////////////////

//

// Public events

//

/////////////////////////////////////////////////////////////////////////////



 /**

 * Fired when a new category has been created.

 *

 * @event categoryCreateEvent

 * @param sCategory {String} Category name.

 */

YAHOO.widget.Logger.categoryCreateEvent =

    new YAHOO.util.CustomEvent("categoryCreate", this, true);



 /**

 * Fired when a new source has been named.

 *

 * @event sourceCreateEvent

 * @param sSource {String} Source name.

 */

YAHOO.widget.Logger.sourceCreateEvent =

    new YAHOO.util.CustomEvent("sourceCreate", this, true);



 /**

 * Fired when a new log message has been created.

 *

 * @event newLogEvent

 * @param sMsg {String} Log message.

 */

YAHOO.widget.Logger.newLogEvent = new YAHOO.util.CustomEvent("newLog", this, true);



/**

 * Fired when the Logger has been reset has been created.

 *

 * @event logResetEvent

 */

YAHOO.widget.Logger.logResetEvent = new YAHOO.util.CustomEvent("logReset", this, true);



/////////////////////////////////////////////////////////////////////////////

//

// Private methods

//

/////////////////////////////////////////////////////////////////////////////



/**

 * Creates a new category of log messages and fires categoryCreateEvent.

 *

 * @method _createNewCategory

 * @param sCategory {String} Category name.

 * @private

 */

YAHOO.widget.Logger._createNewCategory = function(sCategory) {

    this.categories.push(sCategory);

    this.categoryCreateEvent.fire(sCategory);

};



/**

 * Checks to see if a category has already been created.

 *

 * @method _isNewCategory

 * @param sCategory {String} Category name.

 * @return {Boolean} Returns true if category is unknown, else returns false.

 * @private

 */

YAHOO.widget.Logger._isNewCategory = function(sCategory) {

    for(var i=0; i < this.categories.length; i++) {

        if(sCategory == this.categories[i]) {

            return false;

        }

    }

    return true;

};



/**

 * Creates a new source of log messages and fires sourceCreateEvent.

 *

 * @method _createNewSource

 * @param sSource {String} Source name.

 * @private

 */

YAHOO.widget.Logger._createNewSource = function(sSource) {

    this.sources.push(sSource);

    this.sourceCreateEvent.fire(sSource);

};



/**

 * Checks to see if a source already exists.

 *

 * @method _isNewSource

 * @param sSource {String} Source name.

 * @return {Boolean} Returns true if source is unknown, else returns false.

 * @private

 */

YAHOO.widget.Logger._isNewSource = function(sSource) {

    if(sSource) {

        for(var i=0; i < this.sources.length; i++) {

            if(sSource == this.sources[i]) {

                return false;

            }

        }

        return true;

    }

};



/**

 * Outputs a log message to global console.log() function.

 *

 * @method _printToBrowserConsole

 * @param oEntry {Object} Log entry object.

 * @private

 */

YAHOO.widget.Logger._printToBrowserConsole = function(oEntry) {

    if(window.console && console.log) {

        var category = oEntry.category;

        var label = oEntry.category.substring(0,4).toUpperCase();



        var time = oEntry.time;

        if (time.toLocaleTimeString) {

            var localTime  = time.toLocaleTimeString();

        }

        else {

            localTime = time.toString();

        }



        var msecs = time.getTime();

        var elapsedTime = (YAHOO.widget.Logger._lastTime) ?

            (msecs - YAHOO.widget.Logger._lastTime) : 0;

        YAHOO.widget.Logger._lastTime = msecs;



        var output =

            localTime + " (" +

            elapsedTime + "ms): " +

            oEntry.source + ": " +

            oEntry.msg;



        console.log(output);

    }

};



/////////////////////////////////////////////////////////////////////////////

//

// Private event handlers

//

/////////////////////////////////////////////////////////////////////////////



/**

 * Handles logging of messages due to window error events.

 *

 * @method _onWindowError

 * @param sMsg {String} The error message.

 * @param sUrl {String} URL of the error.

 * @param sLine {String} Line number of the error.

 * @private

 */

YAHOO.widget.Logger._onWindowError = function(sMsg,sUrl,sLine) {

    // Logger is not in scope of this event handler

    try {

        YAHOO.widget.Logger.log(sMsg+' ('+sUrl+', line '+sLine+')', "window");

        if(YAHOO.widget.Logger._origOnWindowError) {

            YAHOO.widget.Logger._origOnWindowError();

        }

    }

    catch(e) {

        return false;

    }

};



/////////////////////////////////////////////////////////////////////////////

//

// Enable handling of native JavaScript errors

// NB: Not all browsers support the window.onerror event

//

/////////////////////////////////////////////////////////////////////////////



if(window.onerror) {

    // Save any previously defined handler to call

    YAHOO.widget.Logger._origOnWindowError = window.onerror;

}

window.onerror = YAHOO.widget.Logger._onWindowError;



/////////////////////////////////////////////////////////////////////////////

//

// First log

//

/////////////////////////////////////////////////////////////////////////////



YAHOO.widget.Logger.log("Logger initialized");