JScrollPane scrollPane = new JScrollPane();
scrollPane.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
scrollPane.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS);
logEventos.add(scrollPane);
textPane = new JTextPane();
textPane.setBackground(SystemColor.text);
textPane.setEditable(false);
scrollPane.setViewportView(textPane);
JPanel pnlEvntLog = new JPanel();