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 bad84ed commit 6909f71Copy full SHA for 6909f71
plugins/core/jetbrains-community/src/software/aws/toolkits/jetbrains/core/credentials/sso/DiskCache.kt
@@ -111,7 +111,7 @@ class DiskCache(
111
}
112
113
override fun loadClientRegistration(cacheKey: ClientRegistrationCacheKey, source: String): ClientRegistration? {
114
- LOG.info { "loadClientRegistration for $cacheKey" }
+ LOG.info { "loadClientRegistration:$source for $cacheKey" }
115
val cacheFile = clientRegistrationCache(cacheKey)
116
val diskData = cacheFile.tryInputStreamIfExists()?.use { it.readBytes() }
117
val memoryData = InMemoryCache.get(cacheFile.toString())
0 commit comments