fix: remove error from valid check

Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com>
This commit is contained in:
Lorenz Herzberger 2024-10-15 11:33:47 +02:00
parent 2a5b7c49c8
commit 199905d2dc
No known key found for this signature in database
GPG Key ID: FA5EE906EB55316A

View File

@ -256,7 +256,7 @@ func IsLegitMachineAddress(address string) (active bool, err error) {
// Check the status code
if resp.StatusCode != http.StatusOK {
log.Print("[app] [Monitor] Error: unexpected status code: " + string(body))
log.Print("[app] [Monitor] unexpected status code: " + string(body))
return
}