Skip to content

Commit

Permalink
remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
marcuspoehls committed Jan 27, 2024
1 parent 71ee9ff commit d99f172
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions packages/core/src/bootstrappers/load-environment-variables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ export class LoadEnvironmentVariables implements Bootstrapper {
*/
async loadDefaultEnvironmentFile (): Promise<void> {
const envPath = this.app.environmentFilePath()
this.app.logger().alert('envPath', envPath)

if (await Fs.notExists(envPath)) {
throw new Error(`Invalid environment file. Cannot find env file "${envPath}".`)
Expand All @@ -55,8 +54,6 @@ export class LoadEnvironmentVariables implements Bootstrapper {
* Load the given environment `file` content into `process.env`.
*/
async loadEnvironmentFile (path: string, options: DotenvConfigOptions): Promise<void> {
this.app.logger().alert('loading env file from path -->', path)

const { error } = Dotenv.config({ path, ...options })

if (error) {
Expand Down

0 comments on commit d99f172

Please sign in to comment.