We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b0ad2c commit 34523c5Copy full SHA for 34523c5
packages/contentstack-config/src/utils/rate-limit-handler.ts
@@ -1,4 +1,4 @@
1
-import { cliux, configHandler } from '@contentstack/cli-utilities';
+import { cliux, configHandler, formatError } from '@contentstack/cli-utilities';
2
import { limitNamesConfig, defaultRalteLimitConfig } from '../utils/common-utilities';
3
import { Limit } from '../interfaces';
4
@@ -66,6 +66,7 @@ export class RateLimitHandler {
66
}
67
});
68
} catch (error) {
69
+ console.log('Something went wrong while setting rate limit for org:', formatError(error));
70
throw new Error(error);
71
72
0 commit comments