mirror of
https://github.com/edouardparis/lntop
synced 2024-11-08 01:10:32 +00:00
23 lines
594 B
Go
23 lines
594 B
Go
|
// Copyright 2016 Canonical Ltd.
|
||
|
// Licensed under the LGPLv3, see LICENCE file for details.
|
||
|
|
||
|
package loggo
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
// Entry represents a single log message.
|
||
|
type Entry struct {
|
||
|
// Level is the severity of the log message.
|
||
|
Level Level
|
||
|
// Module is the dotted module name from the logger.
|
||
|
Module string
|
||
|
// Filename is the full path the file that logged the message.
|
||
|
Filename string
|
||
|
// Line is the line number of the Filename.
|
||
|
Line int
|
||
|
// Timestamp is when the log message was created
|
||
|
Timestamp time.Time
|
||
|
// Message is the formatted string from teh log call.
|
||
|
Message string
|
||
|
}
|