fix: migrate to gitea

This commit is contained in:
2020-06-10 21:13:05 +02:00
parent 940e04371c
commit a49546bd6d
20 changed files with 61 additions and 55 deletions

View File

@ -3,10 +3,10 @@ package daemon
import (
"fmt"
"git.cryptic.systems/volker.raschek/flucky/pkg/config"
"git.cryptic.systems/volker.raschek/flucky/pkg/daemon"
"git.cryptic.systems/volker.raschek/go-logger"
"github.com/spf13/cobra"
"github.com/volker-raschek/flucky/pkg/config"
"github.com/volker-raschek/flucky/pkg/daemon"
"github.com/volker-raschek/go-logger/pkg/logger"
)
// InitCmd initialize all daemon subcommands
@ -37,7 +37,7 @@ func run(cmd *cobra.Command, args []string) error {
// return fmt.Errorf("No loglevel defined: %v", err)
// }
flogger := logger.NewDefaultLogger(logger.LogLevelDebug)
flogger := logger.NewLogger(logger.LogLevelDebug)
cnf, err := config.Read(configFile)
if err != nil {