Add errors
This commit is contained in:
parent
9f8319126f
commit
716be466e0
|
@ -1,6 +1,10 @@
|
||||||
package tui
|
package tui
|
||||||
|
|
||||||
import "git.qowevisa.me/Qowevisa/gotell/errors"
|
import (
|
||||||
|
"log"
|
||||||
|
|
||||||
|
"git.qowevisa.me/Qowevisa/gotell/errors"
|
||||||
|
)
|
||||||
|
|
||||||
func (t *TUI) launchErrorsChannel() error {
|
func (t *TUI) launchErrorsChannel() error {
|
||||||
if t.errorsChannel == nil {
|
if t.errorsChannel == nil {
|
||||||
|
@ -9,6 +13,7 @@ func (t *TUI) launchErrorsChannel() error {
|
||||||
go func() {
|
go func() {
|
||||||
for err := range t.errorsChannel {
|
for err := range t.errorsChannel {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
log.Printf("ERROR: %#v\n", err)
|
||||||
t.createNotification(err.Error(), CONST_ERROR_N_TITLE)
|
t.createNotification(err.Error(), CONST_ERROR_N_TITLE)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user