-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconsole.js
More file actions
71 lines (61 loc) · 1.56 KB
/
console.js
File metadata and controls
71 lines (61 loc) · 1.56 KB
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
var console = {
/**
* Write a debug message to the console. The arguments to the method call will be
* concatenated into one string message.
* @param {Object} message
*/
debug: function(message) {},
/**
* Write an info message to the console. The arguments to the method call will be
* concatenated into one string message.
* @param {Object} message
*/
info: function(message) {},
/**
* Write a warning message to the console. The arguments to the method call will be
* concatenated into one string message.
* @param {Object} message
*/
warn: function(message) {},
/**
* Write an error message to the console. The arguments to the method call will be
* concatenated into one string message.
* @param {Object} message
*/
error: function(message) {},
/**
* Dump a stack trace to the console.
* @param {Object} message
*/
trace: function(message) {},
/**
* Show message in console
* @param {Object} message
*/
log: function(message){},
/**
* Show formatted object in console
* @param {Object} message
*/
dir: function(message){},
/**
* Start measuring timer
* @param {Object} message
*/
time: function(message){},
/**
* Stop measuring timer
* @param {Object} message
*/
timeEnd: function(message){},
/**
* Start profiling
* @param {Object} message
*/
profile: function(message){},
/**
* Stop profiling
* @param {Object} message
*/
profileEnd: function(message){}
};