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 b16fcb7 commit 1713c41Copy full SHA for 1713c41
java/kotlin-extractor/src/main/kotlin/utils/Logger.kt
@@ -207,20 +207,6 @@ open class LoggerBase(val logCounter: LogCounter) {
207
}
208
209
open class Logger(val loggerBase: LoggerBase, open val tw: TrapWriter) {
210
- private fun getDiagnosticLocation(): String? {
211
- val st = Exception().stackTrace
212
- for(x in st) {
213
- when(x.className) {
214
- "com.github.codeql.Logger",
215
- "com.github.codeql.FileLogger" -> {}
216
- else -> {
217
- return x.toString()
218
- }
219
220
221
- return null
222
223
-
224
fun flush() {
225
tw.flush()
226
loggerBase.flush()
0 commit comments