1
0
Fork 0
mirror of https://github.com/postmannen/ctrl.git synced 2024-12-14 12:37:31 +00:00

fixed linter warnings

This commit is contained in:
postmannen 2022-10-05 09:24:49 +02:00
parent 0249a86040
commit b125e75094
2 changed files with 2 additions and 2 deletions

View file

@ -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 Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the a copy of this software and associated documentation files (the

View file

@ -253,7 +253,7 @@ func (p process) spawnWorker() {
p.processes.active.procNames[p.processName] = p p.processes.active.procNames[p.processName] = p
p.processes.active.mu.Unlock() 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) p.errorKernel.logConsoleOnlyIfDebug(er, p.configuration)
} }