2014-04-26 09:18:56 +00:00
|
|
|
package DeviceDatabase
|
|
|
|
|
2014-10-19 17:19:11 +00:00
|
|
|
import (
|
|
|
|
"github.com/SommerEngineering/Ocean/Log/Meta"
|
|
|
|
)
|
2014-04-26 09:18:56 +00:00
|
|
|
|
|
|
|
type Database struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dev Database) Log(entries []Meta.Entry) {
|
|
|
|
|
|
|
|
//
|
|
|
|
// Can not log here to prevent endless loop (consumer is also producer)
|
|
|
|
//
|
|
|
|
|
|
|
|
write2Cache(entries)
|
|
|
|
}
|