Skip to content

Commit c186ed3

Browse files
Merge pull request #140 from topcoder-platform/PROD-2145_build-var
PROD-2145 verify deployment is succeeding -> dev
2 parents b815307 + 3a38365 commit c186ed3

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

src-ts/config/environments/environment.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { EnvironmentConfigProd } from './environment.prod.config'
88

99
function getEnvironmentConfig(): GlobalConfig {
1010

11+
console.debug('REACT_APP_HOST_ENV', process.env.REACT_APP_HOST_ENV)
1112
switch (process.env.REACT_APP_HOST_ENV) {
1213

1314
case AppHostEnvironment.bsouza:

src-ts/lib/functions/logging-functions/logging.functions.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,24 @@ import { GlobalConfig } from '../../global-config.model'
44

55
export function initialize(config: GlobalConfig): void {
66

7+
console.debug('init logging', config.LOGGING)
8+
79
// if we don't have a token and service,
810
// logging isn't supported in this environment,
911
// so don't initialize anything
1012
if (!config.LOGGING?.PUBLIC_TOKEN || !config.LOGGING?.SERVICE) {
1113
return
1214
}
1315

16+
console.debug('logging env', config.ENV)
1417
datadogLogs.init({
1518
clientToken: config.LOGGING.PUBLIC_TOKEN,
1619
env: config.ENV,
1720
service: config.LOGGING.SERVICE,
1821
silentMultipleInit: true,
1922
})
2023

21-
info(`initialized logging for ${config.ENV}`)
24+
info(`initialized logging for ${config.ENV} test`)
2225
}
2326

2427
export function error(message: string, messageContext?: object): void {

src-ts/tools/work/work-not-logged-in/WorkNotLoggedIn.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const WorkNotLoggedIn: FC<{}> = () => {
6565
<div className={styles.rightContent}>
6666

6767
<h2 className={styles.title}>
68-
put our great talent to work for you
68+
TOPCODER put our great talent to work for you
6969
</h2>
7070

7171
<p className={styles.description}>

0 commit comments

Comments
 (0)