File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
core/deployment/src/main/java/io/quarkus/deployment/index Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -289,17 +289,17 @@ public Index apply(PathVisit visit) {
289289 try {
290290 if (reader .getIndexVersion () < REQUIRED_INDEX_VERSION ) {
291291 log .warnf (
292- "Re-indexing %s - at least Jandex 2.1 must be used to index an application dependency" ,
293- visit .getPath ());
292+ "Re-indexing %s:%s - at least Jandex 2.1 must be used to index an application dependency" ,
293+ visit .getRoot (), visit . getPath ());
294294 return null ;
295295 }
296296 return reader .read ();
297297 } catch (UnsupportedVersion e ) {
298298 throw new UnsupportedVersion (
299- "Can't read Jandex index from " + visit .getPath () + ": " + e .getMessage ());
299+ "Can't read Jandex index from " + visit .getRoot () + ":" + visit . getPath () + ": " + e .getMessage ());
300300 }
301301 } catch (IOException e ) {
302- throw new UncheckedIOException ("Can't read Jandex index from " + visit .getPath (), e );
302+ throw new UncheckedIOException ("Can't read Jandex index from " + visit .getRoot () + ":" + visit . getPath (), e );
303303 }
304304 }
305305 }
You can’t perform that action at this time.
0 commit comments