Error response enhancements, CoreID auth client backend

This commit is contained in:
2022-03-29 01:14:46 -05:00
parent a039b1ff25
commit 8f08b94f74
31 changed files with 736 additions and 52 deletions

View File

@@ -3,7 +3,7 @@ import {
ErrorWithContext,
globalRegistry,
infer,
isLoggingLevel,
isLoggingLevel, logIfDebugging,
PathLike,
StandardLogger,
universalPath,
@@ -237,9 +237,11 @@ export class Application extends Container {
* @protected
*/
protected bootstrapEnvironment(): void {
logIfDebugging('extollo.env', `.env path: ${this.basePath.concat('.env').toLocal}`)
dotenv.config({
path: this.basePath.concat('.env').toLocal,
})
logIfDebugging('extollo.env', process.env)
}
/**