diff --git a/config/default.js b/config/default.js index 87b2037783f..32e3c48aec4 100644 --- a/config/default.js +++ b/config/default.js @@ -16,7 +16,8 @@ const validAppNames = [ // Throw if the appName supplied is not valid. if (appName && !validAppNames.includes(appName)) { - throw new Error(`App ${appName} is not enabled`); + throw new Error( + `App "${appName}" is not enabled; valid app names: ${validAppNames}`); }