Skip to content

Commit

Permalink
Add debugging line to AdditiveColumnTransform.
Browse files Browse the repository at this point in the history
  • Loading branch information
mhanes committed May 9, 2012
1 parent cdd60ae commit e9ebc80
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -68,6 +68,10 @@ public String transform(IDatabasePlatform platform, DataContext context,
}
throw new IgnoreColumnException();
} else {
if (log.isDebugEnabled()) {
log.debug("Old and new as received: "+oldValue+", "+newValue);
}

if (!StringUtils.isNotBlank(newValue)) {
newValue="0";
}
Expand Down

0 comments on commit e9ebc80

Please sign in to comment.