Skip to content

Commit

Permalink
Add support to ini values
Browse files Browse the repository at this point in the history
  • Loading branch information
yamelsenih committed May 7, 2022
1 parent 1ef65a8 commit 7e6e810
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<attribute name="gradle_used_by_scope" value="main,test"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17/"/>
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
<classpathentry kind="output" path="bin/default"/>
</classpath>
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ dependencies {
implementation 'com.itextpdf:itext-pdfa:5.5.2'
implementation 'com.lowagie:itext:2.1.7'
// ADempiere Core
implementation 'io.github.adempiere:base:3.9.4-develop-1.2'
implementation 'io.github.adempiere:base:3.9.4-develop-1.3'
implementation 'io.github.adempiere:point-of-sales:3.9.4-develop-1.0'
implementation 'io.github.adempiere:store:3.9.4-develop-1.1'
implementation 'io.github.adempiere:fleet:3.9.4-develop-1.0'
Expand Down
1 change: 1 addition & 0 deletions src/main/java/org/spin/base/setup/SetupLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ public void validateLoad() throws Exception {
// Set default init
Ini.setProperty(Ini.P_CONNECTION, connection.toStringLong());
Ini.setClient(false);
Ini.setProperty(Ini.P_ADEMPIERE_APPS_TYPE, "wildfly");
Level logLevel = Level.parse(setup.getServer().getLog_level().toUpperCase());
Ini.setProperty(Ini.P_TRACEFILE, logLevel.getName());
CLogMgt.setLevel(logLevel);
Expand Down

0 comments on commit 7e6e810

Please sign in to comment.