We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd08ff3 commit 322e9b2Copy full SHA for 322e9b2
1 file changed
map/client/planets.js
@@ -26,7 +26,7 @@ export const Planets = {
26
// Client creation is resilient to connection error for offline mode
27
// but this is not yet supported for planets.
28
if (client.isDisconnected) {
29
- const error = new Error(`Cannot connect to planet ${name}`)
+ const error = new Error(`[KDK] Cannot connect to planet ${name}`)
30
logger.error(error)
31
throw error
32
}
@@ -41,7 +41,7 @@ export const Planets = {
41
})
42
const accessToken = await client.get('storage').getItem(options.apiJwt)
43
if (!accessToken) {
44
- const error = new Error(`You must set planet ${name} token first`)
+ const error = new Error(`[KDK] You must set planet ${name} token first`)
45
46
47
0 commit comments