2014-04-26 09:18:56 +00:00
|
|
|
package Device
|
|
|
|
|
2014-10-19 17:19:11 +00:00
|
|
|
import (
|
|
|
|
"github.com/SommerEngineering/Ocean/Log/Meta"
|
|
|
|
)
|
2014-04-26 09:18:56 +00:00
|
|
|
|
2015-06-17 15:44:52 +00:00
|
|
|
// The interface for every logging device.
|
2014-04-26 09:18:56 +00:00
|
|
|
type Device interface {
|
|
|
|
Log(logEntries []Meta.Entry)
|
|
|
|
Flush()
|
2015-06-23 05:49:59 +00:00
|
|
|
SetProjectName(projectName string)
|
2014-04-26 09:18:56 +00:00
|
|
|
}
|