Skip to content

Commit

Permalink
JBVFS-60, trace the hasBeenModified behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
starksm64 committed Sep 9, 2008
1 parent 15f0450 commit 0bfc23a
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@ public boolean hasBeenModified() throws IOException
{
boolean hasBeenModified = false;
long last = getLastModified();
if(log.isTraceEnabled())
log.trace("hasBeenModified, lastModified: "+last+", cachedLastModified: "+cachedLastModified);
if (cachedLastModified != last)
{
hasBeenModified = cachedLastModified != 0;
Expand Down

0 comments on commit 0bfc23a

Please sign in to comment.