diff --git a/ts/groups/limits.ts b/ts/groups/limits.ts index 9cce18fce..18e7d6e3f 100644 --- a/ts/groups/limits.ts +++ b/ts/groups/limits.ts @@ -10,7 +10,7 @@ function makeGetter(configKey: ConfigKeyType): (fallback?: number) => number { try { return parseIntOrThrow( getValue(configKey), - 'Failed to parse group size limit' + `Failed to parse ${configKey} as an integer` ); } catch (err) { if (isNumber(fallback)) {