Page Menu
Home
Musing Studio
Search
Configure Global Search
Log In
Files
F10528482
log.go
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
539 B
Subscribers
None
log.go
View Options
// Package log prints different kinds of log messages in the formats we like.
package
log
import
(
"log"
"os"
)
var
(
InfoLog
*
log
.
Logger
ErrorLog
*
log
.
Logger
)
func
init
()
{
InfoLog
=
log
.
New
(
os
.
Stdout
,
""
,
log
.
Ldate
|
log
.
Ltime
)
ErrorLog
=
log
.
New
(
os
.
Stderr
,
"ERROR: "
,
log
.
Ldate
|
log
.
Ltime
|
log
.
Lshortfile
)
}
// Info logs an informational message to Stdout.
func
Info
(
s
string
,
v
...
interface
{})
{
InfoLog
.
Printf
(
s
,
v
...
)
}
// Error logs an error to Stderr.
func
Error
(
s
string
,
v
...
interface
{})
{
ErrorLog
.
Printf
(
s
,
v
...
)
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Apr 5, 10:24 PM (13 h, 26 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3188265
Attached To
rWC Write.as Web Core
Event Timeline
Log In to Comment