File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
dd-java-agent/agent-debugger/src/main/java/com/datadog/debugger/symbol Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ public class SymbolAggregator {
4747 private int totalClasses ;
4848 // ClassNameTrie is not thread safe, All accesses must be protected by a lock
4949 private final ClassNameTrie .Builder loadedClasses = new ClassNameTrie .Builder ();
50- private final Queue <String > jarsToScanQueue = new ArrayBlockingQueue <>(64 );
50+ private final Queue <String > jarsToScanQueue = new ArrayBlockingQueue <>(128 );
5151 private final Set <String > alreadyScannedJars = ConcurrentHashMap .newKeySet ();
5252
5353 public SymbolAggregator (
@@ -224,7 +224,7 @@ private void scanDirectory(
224224 alreadyScannedJars .add (jarPath .toString ());
225225 } catch (IOException e ) {
226226 symDBReport .addIOException (jarPath .toString (), e );
227- throw new RuntimeException ( e );
227+ LOGGER . debug ( "Exception during scanning directory: {}" , jarPath , e );
228228 }
229229 }
230230
You can’t perform that action at this time.
0 commit comments