We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 403e422 commit 8997facCopy full SHA for 8997fac
apps/dashboard/src/@/api/analytics.ts
@@ -78,7 +78,9 @@ export async function getUserOpUsage(
78
});
79
80
if (res?.status !== 200) {
81
- console.error("Failed to fetch user ops usage");
+ console.error(
82
+ `Failed to fetch user ops usage: ${res?.status} - ${res.statusText}`,
83
+ );
84
return [];
85
}
86
@@ -99,7 +101,9 @@ export async function getClientTransactions(
99
101
);
100
102
103
- console.error("Failed to fetch client transactions stats");
104
105
+ `Failed to fetch client transactions stats: ${res?.status} - ${res.statusText}`,
106
107
108
109
0 commit comments