Removed err from log

pull/32/merge
Paulo Truta 2023-05-30 21:25:40 +02:00
parent 113785def4
commit 8d0de36cdd
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ func ExecuteTask(task Task) Task {
var args taskSetupBackupsArgs
err := json.Unmarshal([]byte(task.Args.String), &args)
if err != nil {
log.Println("Error reading arguments of setup_backups task: " + err)
log.Println("Error reading arguments of setup_backups task.")
} else {
taskResult := taskSetupBackups(args)
taskResultBool := true