Skip to content

Commit 62a4cce

Browse files
committed
Cleanup.
1 parent b3c3e87 commit 62a4cce

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

build/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

published/6.8.6/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

published/latest/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/AutoConfig.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@ export default class AutoConfig {
66
static run = () => {
77
const cachedConfig = loadFromGleapCache("config");
88
if (cachedConfig) {
9+
console.log(cachedConfig);
910
AutoConfig.applyConfig(cachedConfig);
11+
console.log("Loaded config from cache.");
1012
AutoConfig.loadConfigFromServer(false);
1113
return Promise.resolve();
1214
}
1315

16+
console.log("Loaded config from server.");
1417
return AutoConfig.loadConfigFromServer(true);
1518
};
1619

@@ -48,6 +51,7 @@ export default class AutoConfig {
4851
};
4952

5053
static applyConfig(config) {
54+
console.log("Loaded" + config);
5155
try {
5256
const flowConfig = config.flowConfig;
5357
const projectActions = config.projectActions;

0 commit comments

Comments
 (0)