24 Commits

Author SHA1 Message Date
32fc117caf Merge branch 'master' into develop 2022-09-18 22:50:52 -05:00
94dcaf508d updated libraries 2022-09-18 22:39:41 -05:00
ed3b02f439 Updated libraries 2022-09-18 22:35:08 -05:00
8b4e67892a Fixed issue with Jenkis file 2022-09-18 22:31:42 -05:00
16b1df3dd6 Fixed issue with error 2022-09-18 22:26:46 -05:00
0c4e4efea8 Updated libraries to fix vulnerabilities 2022-09-18 22:25:14 -05:00
df50805038 Updated libraries to fix vulnerabilities 2022-09-18 22:23:00 -05:00
a4c39918f0 Merge branch 'develop' into master
All checks were successful
Locusworks Team/app-logger/pipeline/head This commit looks good
2022-03-02 17:30:25 -06:00
55a2f620a1 Merge pull request 'Adjusted node' (#11) from bug/jenkins_update into develop
All checks were successful
Locusworks Team/app-logger/pipeline/head This commit looks good
Reviewed-on: #11
2022-03-02 17:24:09 -06:00
b50eccc471 Adjusted node 2022-03-02 18:16:32 -05:00
ecfdf202d8 Merge pull request 'bug/jenkins_update' (#10) from bug/jenkins_update into develop
Some checks reported errors
Locusworks Team/app-logger/pipeline/head Something is wrong with the build of this commit
Reviewed-on: #10
2022-03-02 17:15:36 -06:00
43cffb3610 Merge branch 'develop' of ssh://gitea.locusworks.net:7999/locusworks/app-logger into bug/jenkins_update 2022-03-02 18:08:10 -05:00
8575afe735 Updated jenkins build file 2022-03-02 18:07:55 -05:00
f5806348dc Merge pull request 'feature/update_library_again (#8)' (#9) from develop into master
Some checks reported errors
Locusworks Team/app-logger/pipeline/head Something is wrong with the build of this commit
Reviewed-on: #9
2022-03-02 16:57:19 -06:00
043e9e9075 feature/update_library_again (#8)
Some checks reported errors
Locusworks Team/app-logger/pipeline/head Something is wrong with the build of this commit
Co-authored-by: Isaac Parenteau <locus2k@gmail.com>
Reviewed-on: #8
2022-03-02 16:56:32 -06:00
1986831f2c updated log4j library 2022-03-02 17:47:08 -05:00
9ac40b5922 Updated log4j 2022-03-02 17:41:44 -05:00
77bd18b0f1 Merge pull request 'develop' (#7) from develop into master
All checks were successful
Locusworks Team/app-logger/pipeline/head This commit looks good
Reviewed-on: #7
2021-09-14 22:24:35 -05:00
b91e7a9618 Merge pull request 'Updated dependencies' (#5) from feature/library_update into develop
All checks were successful
Locusworks Team/app-logger/pipeline/head This commit looks good
Reviewed-on: #5
2021-09-14 22:23:33 -05:00
211196aca9 Updated dependencies
All checks were successful
Locusworks Team/app-logger/pipeline/head This commit looks good
2021-09-14 22:18:04 -05:00
e30e2c8455 Merge pull request 'release/1.0' (#4) from release/1.0 into master
All checks were successful
Locusworks Team/app-logger/pipeline/head This commit looks good
2020-05-31 21:32:23 +00:00
bf1b6497ef Merge pull request 'develop' (#3) from develop into release/1.0
All checks were successful
Locusworks Team/app-logger/pipeline/head This commit looks good
2020-05-31 21:32:06 +00:00
76d2898671 Merge pull request 'updated logger libraries' (#2) from feature/library_update into develop
All checks were successful
Locusworks Team/app-logger/pipeline/head This commit looks good
2020-05-31 21:31:35 +00:00
ef833be8f2 updated logger libraries
All checks were successful
Locusworks Team/app-logger/pipeline/head This commit looks good
2020-05-31 16:30:44 -05:00
5 changed files with 65 additions and 22 deletions

3
.gitignore vendored
View File

@ -2,3 +2,6 @@
.classpath
.settings/
target/
.idea/
bin/
.idea

8
Jenkinsfile vendored
View File

@ -48,7 +48,7 @@ def init() {
if (branch_name.indexOf('master')==0) build_type='master'
// common pipeline elements
node('master') {
node() {
Initialize()
SetVersion(build_type)
print_vars() // after SetVersion - all variables now defined
@ -57,16 +57,16 @@ def init() {
}
if (branch_name.indexOf('develop')==0) {
node('master') {
node() {
Deploy();
}
} else if (branch_name.indexOf('release/')==0) {
node('master') {
node() {
Deploy();
}
}
node('master') {
node() {
set_result('SUCCESS')
}

56
pom.xml
View File

@ -9,7 +9,7 @@
<description>Logger library for applications</description>
<scm>
<url>ssh://git@bitbucket.org:locus2k/applogger.git</url>
<url>ssh://gitea@gitea.locusworks.net:7999/locusworks/app-logger.git</url>
</scm>
<organization>
<name>locusworks</name>
@ -20,8 +20,8 @@
<main.basedir>${project.basedir}</main.basedir>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<log4j.version>2.13.0</log4j.version>
<slf4j.version>1.7.30</slf4j.version>
<log4j.version>2.19.0</log4j.version>
<slf4j.version>2.0.1</slf4j.version>
<nexus.repo>https://nexus.locusworks.net</nexus.repo>
</properties>
@ -30,20 +30,54 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20.1</version>
<version>3.0.0-M7</version>
<configuration>
<forkMode>always</forkMode>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugin</groupId>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<version>3.10.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<failOnError>true</failOnError>
<compilerArgs>
<arg>-Xlint:all</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>7.2.0</version>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>enforce</id>
<configuration>
<rules>
<DependencyConvergence />
</rules>
</configuration>
<goals>
<goal>enforce</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
@ -62,6 +96,12 @@
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j.version}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>

View File

@ -17,7 +17,7 @@ public class ApplicationLogger implements org.slf4j.Logger {
private static final Logger logger = LoggerFactory.getLogger(ApplicationLogger.class);
private String name;
private final String name;
private LogLevel level;
@ -588,7 +588,7 @@ public class ApplicationLogger implements org.slf4j.Logger {
values.entrySet()
.stream()
.map(entry -> String.format(format, entry.getKey(), entry.getValue()))
.forEach(s -> builder.append(s));
.forEach(builder::append);
log(level, builder.toString());
}
@ -605,7 +605,7 @@ public class ApplicationLogger implements org.slf4j.Logger {
/**
* helper method to format a message for logging
* @param level log level to use
* @param level level to use
* @param message message to log
* @param e any throwable to log
*/

View File

@ -20,7 +20,7 @@ public class ApplicationLoggerFactory {
* Need to get the log level from the properties file.
* Would normally use the configuration service but would create a circular dependency as
* the configuration service use the ApplicationLoggerFactory to create a logger
* @param initializer The initializer
* @param init The initializer
*/
public static void init(ApplicationLoggerInitializer init) {
initializer = init;