1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Failing to loadAll should only warn (#3442)

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2021-07-20 00:33:38 -04:00 committed by GitHub
parent 078583412b
commit 70448159d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -195,7 +195,7 @@ export abstract class KubeObjectStore<T extends KubeObject = any> extends ItemSt
if (error.message) {
Notifications.error(error.message);
}
console.error("[KubeObjectStore] loadAll failed", this.api.apiBase, error);
console.warn("[KubeObjectStore] loadAll failed", this.api.apiBase, error);
this.resetOnError(error);
this.failedLoading = true;
} finally {