Skip to content

Commit

Permalink
fix(deploy-process): reverts changes to configs.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
aston-king-sg committed Dec 14, 2022
1 parent 6553b8a commit eae0c5e
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions src/configs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,42 @@ export function colorizedConsoleConfig(): EnvironmentConfig[] {
];
}

// /**
// * Simple predefined configuration
// *
// * Setup:
// * - Production: AwsCloudWatch - Info
// * - PreProduction: ColorizedConsole - Info
// */
// export function simplePredefinedConfig(): EnvironmentConfig[] {
// return [
// {
// nodeEnvironmentName: Environment.Production,
// transports: [
// {
// type: Transport.AwsCloudWatch,
// minimumLogLevel: LogLevel.Info,
// awsRegion: '',
// logGroupName: '',
// applicationName: '',
// accessKeyId: '',
// secretAccessKey: '',
// uploadRateInMilliseconds: 1000,
// retentionInDays: 180,
// } as AwsCloudwatchTransportConfig,
// ],
// },
// {
// nodeEnvironmentName: Environment.Development,
// transports: [
// {
// minimumLogLevel: LogLevel.Info,
// } as ColorizedConsoleConfig,
// ],
// },
// ];
// }

/**
* Predefined configuration using raw JSON consoles in all environments
*/
Expand Down

0 comments on commit eae0c5e

Please sign in to comment.