Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Cameo
cameo
Commits
5f61978f
Commit
5f61978f
authored
Jun 07, 2021
by
legoc
Browse files
Changed default value for log level from FINE to INFO. Server version 1.0.3
parent
869bfc59
Changes
4
Hide whitespace changes
Inline
Side-by-side
cameo-server-jzmq/pom.xml
View file @
5f61978f
...
@@ -6,14 +6,14 @@
...
@@ -6,14 +6,14 @@
<version>
0.0.1
</version>
<version>
0.0.1
</version>
</parent>
</parent>
<artifactId>
cameo-server-jzmq
</artifactId>
<artifactId>
cameo-server-jzmq
</artifactId>
<version>
1.0.
2
</version>
<version>
1.0.
3
</version>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
<dependencies>
<dependencies>
<dependency>
<dependency>
<groupId>
fr.ill.ics
</groupId>
<groupId>
fr.ill.ics
</groupId>
<artifactId>
cameo-server
</artifactId>
<artifactId>
cameo-server
</artifactId>
<version>
1.0.
2
</version>
<version>
1.0.
3
</version>
<exclusions>
<exclusions>
<exclusion>
<exclusion>
<groupId>
fr.ill.ics
</groupId>
<groupId>
fr.ill.ics
</groupId>
...
...
cameo-server/CHANGELOG.md
View file @
5f61978f
1.0.3
-----
*
Changed default value for log level from FINE to INFO.
1.
0.2
1.
0.2
-----
-----
...
...
cameo-server/pom.xml
View file @
5f61978f
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
<version>
0.0.1
</version>
<version>
0.0.1
</version>
</parent>
</parent>
<artifactId>
cameo-server
</artifactId>
<artifactId>
cameo-server
</artifactId>
<version>
1.0.
2
</version>
<version>
1.0.
3
</version>
<packaging>
jar
</packaging>
<packaging>
jar
</packaging>
<properties>
<properties>
...
...
cameo-server/src/main/java/fr/ill/ics/cameo/manager/ConfigManager.java
View file @
5f61978f
...
@@ -110,7 +110,8 @@ public final class ConfigManager {
...
@@ -110,7 +110,8 @@ public final class ConfigManager {
public
void
setLogLevel
(
String
level
)
{
public
void
setLogLevel
(
String
level
)
{
if
(
level
==
null
)
{
if
(
level
==
null
)
{
logLevel
=
"FINE"
;
// Default value.
logLevel
=
"INFO"
;
}
}
else
if
(
level
.
equalsIgnoreCase
(
"OFF"
))
{
else
if
(
level
.
equalsIgnoreCase
(
"OFF"
))
{
logLevel
=
"OFF"
;
logLevel
=
"OFF"
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment