2014-04-26 09:18:56 +00:00
|
|
|
package DeviceConsole
|
|
|
|
|
2014-10-19 17:19:11 +00:00
|
|
|
import (
|
|
|
|
"github.com/SommerEngineering/Ocean/Log"
|
|
|
|
)
|
2014-04-26 09:18:56 +00:00
|
|
|
|
2015-06-17 15:44:52 +00:00
|
|
|
// Function with the setup of the logging device.
|
2014-04-26 09:18:56 +00:00
|
|
|
func ActivateLoggingDevice() {
|
|
|
|
Log.AddLoggingDevice(Console{})
|
|
|
|
}
|