We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0604dbf + 737c4fe commit d965014Copy full SHA for d965014
1 file changed
src/main/state.ts
@@ -87,7 +87,6 @@ class State {
87
88
const refresh = async () => {
89
const { token } = action;
90
- let time = Date.now();
91
92
try {
93
const rootNode = this.getNode("Nocalhost") as BaseNocalhostNode;
@@ -120,10 +119,6 @@ class State {
120
119
await this.startAutoRefresh();
121
}, 10 * 1000);
122
}
123
-
124
- logger.info(
125
- `refresh size:${this.refreshFolderMap.size} time:${Date.now() - time}`
126
- );
127
};
128
129
this.cancellationToken = action;
0 commit comments