Skip to content

Commit

Permalink
[MWAR-434] add debug message when deleting resource expected outdated
Browse files Browse the repository at this point in the history
  • Loading branch information
hboutemy committed Jun 12, 2020
1 parent 9c2163e commit 88fe0ea
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@ public void performPackaging( WarPackagingContext context )
{
for ( String resource : context.getOutdatedResources() )
{
new File( context.getWebappDirectory(), resource ).delete();
File outdated = new File( context.getWebappDirectory(), resource );
context.getLog().debug( "deleting outdated resource " + outdated );
outdated.delete();
}
}
}
Expand Down

0 comments on commit 88fe0ea

Please sign in to comment.