We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a46cf8d commit c7d2af0Copy full SHA for c7d2af0
ide-common/src/main/kotlin/org/digma/intellij/plugin/analytics/BackendInfoHolder.kt
@@ -136,9 +136,11 @@ class BackendInfoHolder(val project: Project) : DisposableAdaptor {
136
try {
137
updateImpl()
138
} catch (e: Throwable) {
139
+ Log.log(logger::trace, "update failed trying again in 5 seconds")
140
//if update fails run another try after 2 seconds. maybe it was a momentary error from AnalyticsService.
141
// if that will not succeed there will be another periodic update soon
142
disposingOneShotDelayedTask("BackendInfoHolder.update-fallack", 5.seconds.inWholeMilliseconds) {
143
+ Log.log(logger::trace, "calling updateImpl after 5 seconds delay")
144
145
}
146
0 commit comments