Removed formatting directive from Println call

pull/32/merge
Paulo Truta 2023-05-30 21:22:31 +02:00
parent 335b7ec29e
commit df13bf705d
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: %s", err)
log.Println("Error reading arguments of setup_backups task: " + err)
} else {
taskResult := taskSetupBackups(args)
taskResultBool := true