fix(LXC): network deletion
Some checks failed
CI / build (push) Failing after 3m44s
CI / lint (push) Failing after 3m14s
CI / pkl-validate (push) Successful in 11s
CI / integration-tests (push) Has been skipped
CI / conformance-tests (latest) (push) Has been skipped

This commit is contained in:
2026-02-23 22:44:30 +01:00
parent b8b1bbcdf7
commit 821f0e9f59
3 changed files with 5 additions and 2 deletions

View File

@@ -76,7 +76,7 @@ func authenticatedRequest(method, url, authorization string, urlparams url.Value
return nil, err
}
slog.Debug("Executed Request", "url", method, "status code", resp.Status, "body", string(data))
slog.Debug("Executed Request", "url", method, "params", urlparams, "status code", resp.Status, "body", string(data))
return data, nil
}