Skip to content

Commit

Permalink
added logging
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Dec 14, 2023
1 parent 5a0af82 commit b412484
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -670,12 +670,15 @@ You should also get your employer (if you work as a programmer) or school,
import java.awt.Component;
import java.util.ArrayList;
import java.util.List;
import org.apache.log4j.Logger;

/**
*
* @author jens
*/
public class InvolvedPartiesPanel extends javax.swing.JPanel {

private static final Logger log=Logger.getLogger(InvolvedPartiesPanel.class.getName());

/**
* Creates new form InvolvedPartiesPanel
Expand Down Expand Up @@ -703,6 +706,8 @@ public void updateInvolvedPartiesForCase(ArchiveFileBean aFile) {
aFile.addParty(aadto);


} else {
log.warn("unexpected child component class in parties panel: " + c.getClass().getName());
}
}

Expand Down

0 comments on commit b412484

Please sign in to comment.