Skip to content

Commit 4464535

Browse files
committed
env changed with new position of tenant and new default value of logLevel
1 parent 57a3dad commit 4464535

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

src/app/components/eyeeye-catcher-card/eyeeye-catcher-card.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ export class EyeeyeCatcherCardComponent implements OnInit {
9797
title = this.g.calloutTitle.trim();
9898
}
9999
this.title = title;
100+
console.log('checkIsEmoji title', this.title)
100101
const emojiRegex = require('emoji-regex');
101102
const regex = emojiRegex();
102103
let match: any;

src/environments/environment.pre.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ export const environment = {
1414
loadRemoteTranslations: true,
1515
chatEngine: 'mqtt',
1616
uploadEngine: 'native',
17-
tenant: 'tilechat',
1817
fileUploadAccept:"*/*",
19-
logLevel: 2,
18+
logLevel: 'INFO',
2019
firebaseConfig: {
2120
apiKey: 'CHANGEIT',
2221
authDomain: 'CHANGEIT',
2322
databaseURL: 'CHANGEIT',
2423
projectId: 'CHANGEIT',
2524
storageBucket: 'CHANGEIT',
2625
messagingSenderId: 'CHANGEIT',
27-
appId: 'CHANGEIT'
26+
appId: 'CHANGEIT',
27+
tenant: 'tilechat',
2828
},
2929
chat21Config: {
3030
appId: 'tilechat',

src/environments/environment.prod.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ export const environment = {
1212
remoteTranslationsUrl: 'http://localhost:3000/',
1313
chatEngine: 'CHANGEIT',
1414
uploadEngine: 'CHANGEIT',
15-
tenant: 'CHANGEIT',
1615
fileUploadAccept:"*/*",
17-
logLevel: 2,
16+
logLevel: 'INFO',
1817
firebaseConfig: {
1918
apiKey: 'CHANGEIT',
2019
authDomain: 'CHANGEIT',
2120
databaseURL: 'CHANGEIT',
2221
projectId: 'CHANGEIT',
2322
storageBucket: 'CHANGEIT',
2423
messagingSenderId: 'CHANGEIT',
25-
appId: 'CHANGEIT'
24+
appId: 'CHANGEIT',
25+
tenant: 'CHANGEIT',
2626
},
2727
chat21Config: {
2828
appId: 'tilechat',

src/environments/environment.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const environment = {
1414
uploadEngine: 'native',
1515
tenant: 'tilechat',
1616
fileUploadAccept:"*/*",
17-
logLevel: 2,
17+
logLevel: 'INFO',
1818
firebaseConfig: {
1919
apiKey: 'CHANGEIT',
2020
authDomain: 'CHANGEIT',
@@ -23,6 +23,7 @@ export const environment = {
2323
storageBucket: 'CHANGEIT',
2424
messagingSenderId: 'CHANGEIT',
2525
appId: 'CHANGEIT',
26+
tenant: 'tilechat'
2627
},
2728
chat21Config: {
2829
appId: 'tilechat',

0 commit comments

Comments
 (0)