@@ -54,7 +54,7 @@ class TraceRecorderDataProcessor(projectData: ProjectData, transientData: Transi
5454 return
5555 }
5656
57- logger.info (s " Deferring method entry for unknown method $methodId... " )
57+ logger.debug (s " Deferring method entry for unknown method $methodId... " )
5858
5959 var methodEntries = deferredMethodEntries.get(methodId)
6060 if (methodEntries.isEmpty) {
@@ -85,14 +85,14 @@ class TraceRecorderDataProcessor(projectData: ProjectData, transientData: Transi
8585 })
8686
8787 deferredMethodEntries.remove(id).getOrElse(collection.mutable.ListBuffer .empty[DataMessageContent .MethodEntry ]).foreach(x => {
88- logger.info (s " Processing deferred method entry for method ${x.methodId}... " )
88+ logger.debug (s " Processing deferred method entry for method ${x.methodId}... " )
8989 processMessage(x)
9090 })
9191 deferredSourceLocationCounts.remove(id).getOrElse(collection.mutable.ListBuffer .empty[DataMessageContent .SourceLocationCount ]).foreach(x => {
92- logger.info (s " Processing deferred source location count for method $x" )
92+ logger.debug (s " Processing deferred source location count for method $x" )
9393 })
9494 deferredMapSourceLocations.remove(id).getOrElse(collection.mutable.ListBuffer .empty[DataMessageContent .MapSourceLocation ]).foreach(x => {
95- logger.info (s " Processing deferred map source location for source location ${x.sourceLocationId} in method ${x.methodId}... " )
95+ logger.debug (s " Processing deferred map source location for source location ${x.sourceLocationId} in method ${x.methodId}... " )
9696 processMessage(x)
9797 })
9898
@@ -101,7 +101,7 @@ class TraceRecorderDataProcessor(projectData: ProjectData, transientData: Transi
101101 if (nodeIds.isEmpty) {
102102 if (unknownAndIgnoredMethodCor.contains(methodId)) return
103103
104- logger.info (s " Deferring source location count of $sourceLocationCount for method $methodId... " )
104+ logger.debug (s " Deferring source location count of $sourceLocationCount for method $methodId... " )
105105
106106 var sourceLocationCountMessages = deferredSourceLocationCounts.get(methodId)
107107 if (sourceLocationCountMessages.isEmpty) {
@@ -121,7 +121,7 @@ class TraceRecorderDataProcessor(projectData: ProjectData, transientData: Transi
121121 if (nodeIds.isEmpty) {
122122 if (unknownAndIgnoredMethodCor.contains(methodId)) return
123123
124- logger.info (s " Deferring map source location $id for unknown method $methodId... " )
124+ logger.debug (s " Deferring map source location $id for unknown method $methodId... " )
125125
126126 var methodMapSourceLocations = deferredMapSourceLocations.get(methodId)
127127 if (methodMapSourceLocations.isEmpty) {
@@ -154,15 +154,15 @@ class TraceRecorderDataProcessor(projectData: ProjectData, transientData: Transi
154154 })
155155
156156 deferredMethodVisits.remove(id).getOrElse(collection.mutable.ListBuffer .empty[DataMessageContent .MethodVisit ]).foreach(x => {
157- logger.info (s " Processing deferred method visit for source location ${x.sourceLocationId} in method ${x.methodId}" )
157+ logger.debug (s " Processing deferred method visit for source location ${x.sourceLocationId} in method ${x.methodId}" )
158158 processMessage(x)
159159 })
160160
161161
162162 case methodVisitMessage @ DataMessageContent .MethodVisit (methodId, sourceLocationId, _, _) =>
163163 val mappedIds = sourceLocationCor.get(sourceLocationId)
164164 if (mappedIds.isEmpty) {
165- logger.info (s " Deferring method visit for unknown source location $sourceLocationId of method $methodId... " )
165+ logger.debug (s " Deferring method visit for unknown source location $sourceLocationId of method $methodId... " )
166166
167167 var sourceLocationMethodVisits = deferredMethodVisits.get(sourceLocationId)
168168 if (sourceLocationMethodVisits.isEmpty) {
0 commit comments