File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/kotlin/com/coder/toolbox Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -177,17 +177,17 @@ class CoderRemoteProvider(
177
177
178
178
select {
179
179
onTimeout(POLL_INTERVAL ) {
180
- context.logger.trace (" workspace poller waked up by the $POLL_INTERVAL timeout" )
180
+ context.logger.debug (" workspace poller waked up by the $POLL_INTERVAL timeout" )
181
181
}
182
182
triggerSshConfig.onReceive { shouldTrigger ->
183
183
if (shouldTrigger) {
184
- context.logger.trace (" workspace poller waked up because it should reconfigure the ssh configurations" )
184
+ context.logger.debug (" workspace poller waked up because it should reconfigure the ssh configurations" )
185
185
cli.configSsh(lastEnvironments.map { it.asPairOfWorkspaceAndAgent() }.toSet())
186
186
}
187
187
}
188
188
triggerProviderVisible.onReceive { isCoderProviderVisible ->
189
189
if (isCoderProviderVisible) {
190
- context.logger.info (" workspace poller waked up, Coder Toolbox is currently visible, fetching latest workspace statuses" )
190
+ context.logger.debug (" workspace poller waked up, Coder Toolbox is currently visible, fetching latest workspace statuses" )
191
191
}
192
192
}
193
193
}
You can’t perform that action at this time.
0 commit comments