mirror of
https://github.com/postmannen/ctrl.git
synced 2025-03-31 01:24:31 +00:00
added logConsoleOnlyIfDebug to errorKernel
This commit is contained in:
parent
244804bae9
commit
5d9e57db20
1 changed files with 6 additions and 0 deletions
|
@ -187,6 +187,12 @@ func (e *errorKernel) infoSend(proc process, msg Message, err error) {
|
|||
e.errorCh <- ev
|
||||
}
|
||||
|
||||
func (e *errorKernel) logConsoleOnlyIfDebug(err error, c *Configuration) {
|
||||
if c.EnableDebug {
|
||||
log.Printf("%v\n", err)
|
||||
}
|
||||
}
|
||||
|
||||
// // TODO: Needs more work.
|
||||
// //
|
||||
// // errWithAction
|
||||
|
|
Loading…
Add table
Reference in a new issue