Skip to content

Commit

Permalink
LDEV-4669 bugfix: loglevel was being ignore for application log settings
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Aug 12, 2023
1 parent 10175d6 commit d61ab27
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ public static Map<Collection.Key, Pair<Log, Struct>> initLog(Config config, Stru
// level

String strLevel = Caster.toString(v.get("level", null), null);
if (StringUtil.isEmpty(strLevel, true)) Caster.toString(v.get("loglevel", null), null);
if (StringUtil.isEmpty(strLevel, true)) strLevel = Caster.toString(v.get("loglevel", null), null);
int level = LogUtil.toLevel(StringUtil.trim(strLevel, ""), Log.LEVEL_ERROR);

Struct sctAppArgs = Caster.toStruct(sctApp.get("arguments", null), null);
Expand Down
2 changes: 1 addition & 1 deletion loader/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<project default="core" basedir="." name="Lucee"
xmlns:resolver="antlib:org.apache.maven.resolver.ant">

<property name="version" value="5.4.3.1-SNAPSHOT"/>
<property name="version" value="5.4.3.2-SNAPSHOT"/>

<taskdef uri="antlib:org.apache.maven.resolver.ant" resource="org/apache/maven/resolver/ant/antlib.xml">
<classpath>
Expand Down
2 changes: 1 addition & 1 deletion loader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>org.lucee</groupId>
<artifactId>lucee</artifactId>
<version>5.4.3.1-SNAPSHOT</version>
<version>5.4.3.2-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Lucee Loader Build</name>
Expand Down

0 comments on commit d61ab27

Please sign in to comment.