Skip to content

Commit

Permalink
Remove temporary logging definitely
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Nov 5, 2018
1 parent 9b3bc54 commit 51feb72
Showing 1 changed file with 0 additions and 4 deletions.
Expand Up @@ -261,7 +261,6 @@ public void refresh(AjaxRequestTarget target) {
}
if (tabsVisibilityNew.equals(tabsVisibilityOld)) {
// soft version
LOGGER.trace("Soft version of the page refreshing, tabsVisibilityNew: " + tabsVisibilityNew + "; \n tabsVisibilityOld: " + tabsVisibilityOld);
for (Component component : mainPanel.getTabPanel()) {
if (component instanceof TaskTabPanel) {
for (Component c : ((TaskTabPanel) component).getComponentsToUpdate()) {
Expand All @@ -270,7 +269,6 @@ public void refresh(AjaxRequestTarget target) {
}
}
} else {
LOGGER.trace("Hard version of the page refreshing, tabsVisibilityNew: " + tabsVisibilityNew + "; \n tabsVisibilityOld: " + tabsVisibilityOld);
// hard version
target.add(getSummaryPanel());
target.add(mainPanel.getTabPanel());
Expand All @@ -281,10 +279,8 @@ public void refresh(AjaxRequestTarget target) {
refreshDto.recordRefreshed();

if (isEdit() || !refreshDto.isEnabled()) {
LOGGER.trace("Stop refreshing, interval=" + refreshDto.getInterval());
getRefreshPanel().stopRefreshing(this, target);
} else {
LOGGER.trace("Start refreshing, interval=" + refreshDto.getInterval());
getRefreshPanel().startRefreshing(this, target);
}
}
Expand Down

0 comments on commit 51feb72

Please sign in to comment.