FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
openapi-demo-java/WebContent/javascripts/logger.js at master · Pocix/openapi-demo-java · GitHub
Pocix
/
openapi-demo-java
Public
forked from
injekt/openapi-demo-java
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
openapi-demo-java
/
WebContent
/
javascripts
/
logger.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
24 lines (20 loc) · 480 Bytes
Breadcrumbs
openapi-demo-java
/
WebContent
/
javascripts
/
logger.js
Copy path
File metadata and controls
24 lines (20 loc) · 480 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
* Created by liqiao on 8/14/15.
*/
var
log
=
document
.
createElement
(
'div'
)
;
log
.
setAttribute
(
'id'
,
'log'
)
;
document
.
body
.
appendChild
(
log
)
;
var
logger
=
{
i
:
function
(
info
)
{
add
(
info
,
'i'
)
;
}
,
e
:
function
(
err
)
{
add
(
err
,
'e'
)
;
}
}
;
function
add
(
msg
,
level
)
{
var
row
=
document
.
createElement
(
'div'
)
;
row
.
setAttribute
(
'class'
,
'log-row log-'
+
level
)
;
row
.
innerHTML
=
msg
;
document
.
querySelector
(
'#log'
)
.
appendChild
(
row
)
;
}
Back
|
FazBrowse Home
|
New Git URL