IDEMPIERE-656 ViewLog shows AppsServerOK=false in the the error tab of the about window.

This commit is contained in:
Heng Sin Low 2013-03-28 12:03:12 +08:00
parent cc0d7302cb
commit 12602cc4ce
2 changed files with 3 additions and 3 deletions

View File

@ -519,10 +519,9 @@ public class AboutWindow extends Window implements EventListener<Event> {
w.setHeight("500px");
Textarea textbox = new Textarea();
textbox.setDynamicProperty("readonly", "true");
textbox.setStyle("width:100%; height: 100%");
textbox.setStyle("width:99%; height: 99%; margin: auto; display: inline-block;");
w.appendChild(textbox);
Text text = new Text(log);
textbox.appendChild(text);
textbox.setValue(log);
AEnv.showCenterScreen(w);
}

View File

@ -712,6 +712,7 @@ public class DB_PostgreSQL implements AdempiereDatabase
}
m_ds = cpds;
m_connectionURL = m_ds.getJdbcUrl();
}
catch (Exception ex)
{