From b125e750943b20e124c8ab8d53fc06e209ba3486 Mon Sep 17 00:00:00 2001 From: postmannen Date: Wed, 5 Oct 2022 09:24:49 +0200 Subject: [PATCH] fixed linter warnings --- LICENSE | 2 +- process.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index cee9cc1..905ad74 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2021 Bjørn Tore Svinningen, RaaLabs. +Copyright (c) 2022 Bjørn Tore Svinningen, RaaLabs. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/process.go b/process.go index 669229d..41baf7f 100644 --- a/process.go +++ b/process.go @@ -253,7 +253,7 @@ func (p process) spawnWorker() { p.processes.active.procNames[p.processName] = p p.processes.active.mu.Unlock() - er := fmt.Errorf("Successfully started process: %v\n", p.processName) + er := fmt.Errorf("successfully started process: %v", p.processName) p.errorKernel.logConsoleOnlyIfDebug(er, p.configuration) }