diff --git a/build.sbt b/build.sbt index 7d3682475..988a899a1 100644 --- a/build.sbt +++ b/build.sbt @@ -236,8 +236,8 @@ lazy val examplesSlf4j2Log4j = project .settings( publish / skip := true, libraryDependencies ++= Seq( - "org.apache.logging.log4j" % "log4j-slf4j2-impl" % "2.22.1", - "org.apache.logging.log4j" % "log4j-core" % "2.22.1" + "org.apache.logging.log4j" % "log4j-slf4j2-impl" % log4jVersion, + "org.apache.logging.log4j" % "log4j-core" % log4jVersion ) ) diff --git a/core/shared/src/main/scala/zio/logging/ConsoleLoggerConfig.scala b/core/shared/src/main/scala/zio/logging/ConsoleLoggerConfig.scala index 50489a5e4..63b533bff 100644 --- a/core/shared/src/main/scala/zio/logging/ConsoleLoggerConfig.scala +++ b/core/shared/src/main/scala/zio/logging/ConsoleLoggerConfig.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/core/shared/src/main/scala/zio/logging/FileLoggerConfig.scala b/core/shared/src/main/scala/zio/logging/FileLoggerConfig.scala index ab2c91d02..bb26cd6e3 100644 --- a/core/shared/src/main/scala/zio/logging/FileLoggerConfig.scala +++ b/core/shared/src/main/scala/zio/logging/FileLoggerConfig.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/core/shared/src/main/scala/zio/logging/FilteredLogger.scala b/core/shared/src/main/scala/zio/logging/FilteredLogger.scala index 112dea5b4..1da5c9f02 100644 --- a/core/shared/src/main/scala/zio/logging/FilteredLogger.scala +++ b/core/shared/src/main/scala/zio/logging/FilteredLogger.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/core/shared/src/main/scala/zio/logging/LogAnnotation.scala b/core/shared/src/main/scala/zio/logging/LogAnnotation.scala index bdfd979c2..7129ca831 100644 --- a/core/shared/src/main/scala/zio/logging/LogAnnotation.scala +++ b/core/shared/src/main/scala/zio/logging/LogAnnotation.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/core/shared/src/main/scala/zio/logging/LogColor.scala b/core/shared/src/main/scala/zio/logging/LogColor.scala index 1313c7ec9..3f9b99979 100644 --- a/core/shared/src/main/scala/zio/logging/LogColor.scala +++ b/core/shared/src/main/scala/zio/logging/LogColor.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/core/shared/src/main/scala/zio/logging/LogContext.scala b/core/shared/src/main/scala/zio/logging/LogContext.scala index d5b09d16b..34cf589f7 100644 --- a/core/shared/src/main/scala/zio/logging/LogContext.scala +++ b/core/shared/src/main/scala/zio/logging/LogContext.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/core/shared/src/main/scala/zio/logging/LogFilter.scala b/core/shared/src/main/scala/zio/logging/LogFilter.scala index 607d796b4..2b08663f3 100644 --- a/core/shared/src/main/scala/zio/logging/LogFilter.scala +++ b/core/shared/src/main/scala/zio/logging/LogFilter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/core/shared/src/main/scala/zio/logging/LogFormat.scala b/core/shared/src/main/scala/zio/logging/LogFormat.scala index bd07af2a7..968aed3fa 100644 --- a/core/shared/src/main/scala/zio/logging/LogFormat.scala +++ b/core/shared/src/main/scala/zio/logging/LogFormat.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/core/shared/src/main/scala/zio/logging/LogGroup.scala b/core/shared/src/main/scala/zio/logging/LogGroup.scala index eff4e472f..e7fb16d88 100644 --- a/core/shared/src/main/scala/zio/logging/LogGroup.scala +++ b/core/shared/src/main/scala/zio/logging/LogGroup.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/core/shared/src/main/scala/zio/logging/LoggerLayers.scala b/core/shared/src/main/scala/zio/logging/LoggerLayers.scala index f00ad2ab8..e5215a3b8 100644 --- a/core/shared/src/main/scala/zio/logging/LoggerLayers.scala +++ b/core/shared/src/main/scala/zio/logging/LoggerLayers.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/core/shared/src/main/scala/zio/logging/LoggerNameExtractor.scala b/core/shared/src/main/scala/zio/logging/LoggerNameExtractor.scala index 017fea25c..f4ff3fcc1 100644 --- a/core/shared/src/main/scala/zio/logging/LoggerNameExtractor.scala +++ b/core/shared/src/main/scala/zio/logging/LoggerNameExtractor.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/core/shared/src/main/scala/zio/logging/MetricLogger.scala b/core/shared/src/main/scala/zio/logging/MetricLogger.scala index 10ee509a0..f4b4b189c 100644 --- a/core/shared/src/main/scala/zio/logging/MetricLogger.scala +++ b/core/shared/src/main/scala/zio/logging/MetricLogger.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/core/shared/src/main/scala/zio/logging/ReconfigurableLogger.scala b/core/shared/src/main/scala/zio/logging/ReconfigurableLogger.scala index 920ec06ba..89c8a47f0 100644 --- a/core/shared/src/main/scala/zio/logging/ReconfigurableLogger.scala +++ b/core/shared/src/main/scala/zio/logging/ReconfigurableLogger.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/core/shared/src/main/scala/zio/logging/internal/FileWriter.scala b/core/shared/src/main/scala/zio/logging/internal/FileWriter.scala index 56d0e93cc..334cd4992 100644 --- a/core/shared/src/main/scala/zio/logging/internal/FileWriter.scala +++ b/core/shared/src/main/scala/zio/logging/internal/FileWriter.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/core/shared/src/main/scala/zio/logging/internal/JsonEscape.scala b/core/shared/src/main/scala/zio/logging/internal/JsonEscape.scala index 7b021e2ef..6505f62c2 100644 --- a/core/shared/src/main/scala/zio/logging/internal/JsonEscape.scala +++ b/core/shared/src/main/scala/zio/logging/internal/JsonEscape.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/core/shared/src/main/scala/zio/logging/internal/JsonValidator.scala b/core/shared/src/main/scala/zio/logging/internal/JsonValidator.scala index a5b6b679a..4dfae42b7 100644 --- a/core/shared/src/main/scala/zio/logging/internal/JsonValidator.scala +++ b/core/shared/src/main/scala/zio/logging/internal/JsonValidator.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/core/shared/src/main/scala/zio/logging/internal/LogAppender.scala b/core/shared/src/main/scala/zio/logging/internal/LogAppender.scala index 0d271cac4..848bbfa44 100644 --- a/core/shared/src/main/scala/zio/logging/internal/LogAppender.scala +++ b/core/shared/src/main/scala/zio/logging/internal/LogAppender.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/core/shared/src/main/scala/zio/logging/internal/WriterProvider.scala b/core/shared/src/main/scala/zio/logging/internal/WriterProvider.scala index d07e22cac..b89f61ce0 100644 --- a/core/shared/src/main/scala/zio/logging/internal/WriterProvider.scala +++ b/core/shared/src/main/scala/zio/logging/internal/WriterProvider.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/core/shared/src/main/scala/zio/logging/package.scala b/core/shared/src/main/scala/zio/logging/package.scala index ccc03f802..4e3e0c4ae 100644 --- a/core/shared/src/main/scala/zio/logging/package.scala +++ b/core/shared/src/main/scala/zio/logging/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/core/src/main/scala/zio/logging/ConfigurableLogger.scala b/examples/core/src/main/scala/zio/logging/ConfigurableLogger.scala index 6ff7d85df..9524e5f82 100644 --- a/examples/core/src/main/scala/zio/logging/ConfigurableLogger.scala +++ b/examples/core/src/main/scala/zio/logging/ConfigurableLogger.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/core/src/main/scala/zio/logging/api/http/ApiDomain.scala b/examples/core/src/main/scala/zio/logging/api/http/ApiDomain.scala index 0f611eacb..0fbb1e0ac 100644 --- a/examples/core/src/main/scala/zio/logging/api/http/ApiDomain.scala +++ b/examples/core/src/main/scala/zio/logging/api/http/ApiDomain.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/core/src/main/scala/zio/logging/api/http/ApiEndpoints.scala b/examples/core/src/main/scala/zio/logging/api/http/ApiEndpoints.scala index cc22f605f..179de7bd9 100644 --- a/examples/core/src/main/scala/zio/logging/api/http/ApiEndpoints.scala +++ b/examples/core/src/main/scala/zio/logging/api/http/ApiEndpoints.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/core/src/main/scala/zio/logging/api/http/ApiHandlers.scala b/examples/core/src/main/scala/zio/logging/api/http/ApiHandlers.scala index 4784936bf..0ddbf54c5 100644 --- a/examples/core/src/main/scala/zio/logging/api/http/ApiHandlers.scala +++ b/examples/core/src/main/scala/zio/logging/api/http/ApiHandlers.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/core/src/main/scala/zio/logging/example/ConfigurableLoggerApp.scala b/examples/core/src/main/scala/zio/logging/example/ConfigurableLoggerApp.scala index 0fb86fb17..ea86e3afe 100644 --- a/examples/core/src/main/scala/zio/logging/example/ConfigurableLoggerApp.scala +++ b/examples/core/src/main/scala/zio/logging/example/ConfigurableLoggerApp.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/core/src/main/scala/zio/logging/example/ConsoleColoredApp.scala b/examples/core/src/main/scala/zio/logging/example/ConsoleColoredApp.scala index a75f0550b..1f3631929 100644 --- a/examples/core/src/main/scala/zio/logging/example/ConsoleColoredApp.scala +++ b/examples/core/src/main/scala/zio/logging/example/ConsoleColoredApp.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/core/src/main/scala/zio/logging/example/ConsoleJsonApp.scala b/examples/core/src/main/scala/zio/logging/example/ConsoleJsonApp.scala index 228456d2c..c9c0da4ad 100644 --- a/examples/core/src/main/scala/zio/logging/example/ConsoleJsonApp.scala +++ b/examples/core/src/main/scala/zio/logging/example/ConsoleJsonApp.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/core/src/main/scala/zio/logging/example/FileApp.scala b/examples/core/src/main/scala/zio/logging/example/FileApp.scala index 44e805278..4fdb4a5b1 100644 --- a/examples/core/src/main/scala/zio/logging/example/FileApp.scala +++ b/examples/core/src/main/scala/zio/logging/example/FileApp.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/core/src/main/scala/zio/logging/example/LoggerReconfigureApp.scala b/examples/core/src/main/scala/zio/logging/example/LoggerReconfigureApp.scala index 2652ae84a..0d1aa60af 100644 --- a/examples/core/src/main/scala/zio/logging/example/LoggerReconfigureApp.scala +++ b/examples/core/src/main/scala/zio/logging/example/LoggerReconfigureApp.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/core/src/main/scala/zio/logging/example/MetricsApp.scala b/examples/core/src/main/scala/zio/logging/example/MetricsApp.scala index ac9862171..c7c9a3981 100644 --- a/examples/core/src/main/scala/zio/logging/example/MetricsApp.scala +++ b/examples/core/src/main/scala/zio/logging/example/MetricsApp.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/core/src/main/scala/zio/logging/example/PingService.scala b/examples/core/src/main/scala/zio/logging/example/PingService.scala index 727ec48b3..c452c7aa9 100644 --- a/examples/core/src/main/scala/zio/logging/example/PingService.scala +++ b/examples/core/src/main/scala/zio/logging/example/PingService.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/core/src/main/scala/zio/logging/example/SimpleApp.scala b/examples/core/src/main/scala/zio/logging/example/SimpleApp.scala index d5b555a77..6ff5dff7e 100644 --- a/examples/core/src/main/scala/zio/logging/example/SimpleApp.scala +++ b/examples/core/src/main/scala/zio/logging/example/SimpleApp.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/core/src/test/scala/zio/logging/example/LoggingSpec.scala b/examples/core/src/test/scala/zio/logging/example/LoggingSpec.scala index ff8b3521a..c5ccc2205 100644 --- a/examples/core/src/test/scala/zio/logging/example/LoggingSpec.scala +++ b/examples/core/src/test/scala/zio/logging/example/LoggingSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/core/src/test/scala/zio/logging/example/PingServiceSpec.scala b/examples/core/src/test/scala/zio/logging/example/PingServiceSpec.scala index ff0d0dd81..b73328232 100644 --- a/examples/core/src/test/scala/zio/logging/example/PingServiceSpec.scala +++ b/examples/core/src/test/scala/zio/logging/example/PingServiceSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/jpl/src/main/scala/zio/logging/example/JplSimpleApp.scala b/examples/jpl/src/main/scala/zio/logging/example/JplSimpleApp.scala index 7ae98c9e3..aa54602f8 100644 --- a/examples/jpl/src/main/scala/zio/logging/example/JplSimpleApp.scala +++ b/examples/jpl/src/main/scala/zio/logging/example/JplSimpleApp.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/slf4j-logback/src/main/scala/zio/logging/example/CustomTracingAnnotationApp.scala b/examples/slf4j-logback/src/main/scala/zio/logging/example/CustomTracingAnnotationApp.scala index 3846462bb..65b32cb17 100644 --- a/examples/slf4j-logback/src/main/scala/zio/logging/example/CustomTracingAnnotationApp.scala +++ b/examples/slf4j-logback/src/main/scala/zio/logging/example/CustomTracingAnnotationApp.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/slf4j-logback/src/main/scala/zio/logging/example/PingService.scala b/examples/slf4j-logback/src/main/scala/zio/logging/example/PingService.scala index 727ec48b3..c452c7aa9 100644 --- a/examples/slf4j-logback/src/main/scala/zio/logging/example/PingService.scala +++ b/examples/slf4j-logback/src/main/scala/zio/logging/example/PingService.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/slf4j-logback/src/main/scala/zio/logging/example/Slf4jExampleApp.scala b/examples/slf4j-logback/src/main/scala/zio/logging/example/Slf4jExampleApp.scala index 8408d57e3..47152079c 100644 --- a/examples/slf4j-logback/src/main/scala/zio/logging/example/Slf4jExampleApp.scala +++ b/examples/slf4j-logback/src/main/scala/zio/logging/example/Slf4jExampleApp.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/slf4j-logback/src/main/scala/zio/logging/example/Slf4jFailureApp.scala b/examples/slf4j-logback/src/main/scala/zio/logging/example/Slf4jFailureApp.scala index cdefa33f4..611d6581b 100644 --- a/examples/slf4j-logback/src/main/scala/zio/logging/example/Slf4jFailureApp.scala +++ b/examples/slf4j-logback/src/main/scala/zio/logging/example/Slf4jFailureApp.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/slf4j-logback/src/main/scala/zio/logging/example/Slf4jSimpleApp.scala b/examples/slf4j-logback/src/main/scala/zio/logging/example/Slf4jSimpleApp.scala index 3714a4846..801f428cf 100644 --- a/examples/slf4j-logback/src/main/scala/zio/logging/example/Slf4jSimpleApp.scala +++ b/examples/slf4j-logback/src/main/scala/zio/logging/example/Slf4jSimpleApp.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/slf4j2-bridge/src/main/scala/zio/logging/example/Slf4jBridgeExampleApp.scala b/examples/slf4j2-bridge/src/main/scala/zio/logging/example/Slf4jBridgeExampleApp.scala index 69de5ad26..d7043cca8 100644 --- a/examples/slf4j2-bridge/src/main/scala/zio/logging/example/Slf4jBridgeExampleApp.scala +++ b/examples/slf4j2-bridge/src/main/scala/zio/logging/example/Slf4jBridgeExampleApp.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/slf4j2-log4j/src/main/scala/zio/logging/example/Slf4jSimpleApp.scala b/examples/slf4j2-log4j/src/main/scala/zio/logging/example/Slf4jSimpleApp.scala index 63717029b..6814d488e 100644 --- a/examples/slf4j2-log4j/src/main/scala/zio/logging/example/Slf4jSimpleApp.scala +++ b/examples/slf4j2-log4j/src/main/scala/zio/logging/example/Slf4jSimpleApp.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/examples/slf4j2-logback/src/main/scala/zio/logging/example/Slf4j2SimpleApp.scala b/examples/slf4j2-logback/src/main/scala/zio/logging/example/Slf4j2SimpleApp.scala index 9b4bc3a40..540fe23d0 100644 --- a/examples/slf4j2-logback/src/main/scala/zio/logging/example/Slf4j2SimpleApp.scala +++ b/examples/slf4j2-logback/src/main/scala/zio/logging/example/Slf4j2SimpleApp.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/jpl/src/main/scala/zio/logging/backend/JPL.scala b/jpl/src/main/scala/zio/logging/backend/JPL.scala index a7730c7ad..a0a9c614d 100644 --- a/jpl/src/main/scala/zio/logging/backend/JPL.scala +++ b/jpl/src/main/scala/zio/logging/backend/JPL.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/project/Versions.scala b/project/Versions.scala index a10afb07d..7d8ce08a6 100644 --- a/project/Versions.scala +++ b/project/Versions.scala @@ -9,7 +9,7 @@ object Versions { val zioMetricsConnectorsVersion = "2.3.1" val zioConfig = "4.0.0" val zioParser = "0.1.9" - val zioPrelude = "1.0.0-RC21" + val zioPrelude = "1.0.0-RC22" val zioHttp = "3.0.0-RC4" - val log4jVersion = "2.19.0" + val log4jVersion = "2.22.1" } diff --git a/slf4j-bridge/src/main/java/org/slf4j/helpers/ZioLoggerBase.java b/slf4j-bridge/src/main/java/org/slf4j/helpers/ZioLoggerBase.java index 529529416..d5544ae91 100644 --- a/slf4j-bridge/src/main/java/org/slf4j/helpers/ZioLoggerBase.java +++ b/slf4j-bridge/src/main/java/org/slf4j/helpers/ZioLoggerBase.java @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/slf4j-bridge/src/main/java/org/slf4j/impl/StaticLoggerBinder.java b/slf4j-bridge/src/main/java/org/slf4j/impl/StaticLoggerBinder.java index 7c9725bfd..9352fe144 100644 --- a/slf4j-bridge/src/main/java/org/slf4j/impl/StaticLoggerBinder.java +++ b/slf4j-bridge/src/main/java/org/slf4j/impl/StaticLoggerBinder.java @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/slf4j-bridge/src/main/java/org/slf4j/impl/StaticMDCBinder.java b/slf4j-bridge/src/main/java/org/slf4j/impl/StaticMDCBinder.java index 703e3ee7a..6aa0f69e5 100644 --- a/slf4j-bridge/src/main/java/org/slf4j/impl/StaticMDCBinder.java +++ b/slf4j-bridge/src/main/java/org/slf4j/impl/StaticMDCBinder.java @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/slf4j-bridge/src/main/scala/org/slf4j/impl/LoggerRuntime.scala b/slf4j-bridge/src/main/scala/org/slf4j/impl/LoggerRuntime.scala index dabeba499..e481f8e14 100644 --- a/slf4j-bridge/src/main/scala/org/slf4j/impl/LoggerRuntime.scala +++ b/slf4j-bridge/src/main/scala/org/slf4j/impl/LoggerRuntime.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/slf4j-bridge/src/main/scala/org/slf4j/impl/StaticMarkerBinder.scala b/slf4j-bridge/src/main/scala/org/slf4j/impl/StaticMarkerBinder.scala index 41fb86868..992210c1e 100644 --- a/slf4j-bridge/src/main/scala/org/slf4j/impl/StaticMarkerBinder.scala +++ b/slf4j-bridge/src/main/scala/org/slf4j/impl/StaticMarkerBinder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/slf4j-bridge/src/main/scala/org/slf4j/impl/ZioLogger.scala b/slf4j-bridge/src/main/scala/org/slf4j/impl/ZioLogger.scala index 0264dc12c..0fb052a9e 100644 --- a/slf4j-bridge/src/main/scala/org/slf4j/impl/ZioLogger.scala +++ b/slf4j-bridge/src/main/scala/org/slf4j/impl/ZioLogger.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/slf4j-bridge/src/main/scala/org/slf4j/impl/ZioLoggerFactory.scala b/slf4j-bridge/src/main/scala/org/slf4j/impl/ZioLoggerFactory.scala index 13bbd6835..2bbe8ca5d 100644 --- a/slf4j-bridge/src/main/scala/org/slf4j/impl/ZioLoggerFactory.scala +++ b/slf4j-bridge/src/main/scala/org/slf4j/impl/ZioLoggerFactory.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/slf4j-bridge/src/main/scala/zio/logging/slf4j/bridge/Slf4jBridge.scala b/slf4j-bridge/src/main/scala/zio/logging/slf4j/bridge/Slf4jBridge.scala index 463dde8bb..da30aa72b 100644 --- a/slf4j-bridge/src/main/scala/zio/logging/slf4j/bridge/Slf4jBridge.scala +++ b/slf4j-bridge/src/main/scala/zio/logging/slf4j/bridge/Slf4jBridge.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/slf4j-bridge/src/main/scala/zio/logging/slf4j/bridge/ZioLoggerRuntime.scala b/slf4j-bridge/src/main/scala/zio/logging/slf4j/bridge/ZioLoggerRuntime.scala index 895e851bd..864b2cd15 100644 --- a/slf4j-bridge/src/main/scala/zio/logging/slf4j/bridge/ZioLoggerRuntime.scala +++ b/slf4j-bridge/src/main/scala/zio/logging/slf4j/bridge/ZioLoggerRuntime.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/slf4j/src/main/scala/zio/logging/slf4j/SLF4J.scala b/slf4j/src/main/scala/zio/logging/slf4j/SLF4J.scala index 03d74da06..a726bbbbd 100644 --- a/slf4j/src/main/scala/zio/logging/slf4j/SLF4J.scala +++ b/slf4j/src/main/scala/zio/logging/slf4j/SLF4J.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/slf4j2-bridge/src/main/java/zio/logging/slf4j/bridge/Logger.java b/slf4j2-bridge/src/main/java/zio/logging/slf4j/bridge/Logger.java index 6be9ea249..00dc666a6 100644 --- a/slf4j2-bridge/src/main/java/zio/logging/slf4j/bridge/Logger.java +++ b/slf4j2-bridge/src/main/java/zio/logging/slf4j/bridge/Logger.java @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/slf4j2-bridge/src/main/java/zio/logging/slf4j/bridge/LoggerFactory.java b/slf4j2-bridge/src/main/java/zio/logging/slf4j/bridge/LoggerFactory.java index b655f3dd5..230d02672 100644 --- a/slf4j2-bridge/src/main/java/zio/logging/slf4j/bridge/LoggerFactory.java +++ b/slf4j2-bridge/src/main/java/zio/logging/slf4j/bridge/LoggerFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/slf4j2-bridge/src/main/java/zio/logging/slf4j/bridge/LoggerRuntime.java b/slf4j2-bridge/src/main/java/zio/logging/slf4j/bridge/LoggerRuntime.java index 4f17bd30f..4354c8814 100644 --- a/slf4j2-bridge/src/main/java/zio/logging/slf4j/bridge/LoggerRuntime.java +++ b/slf4j2-bridge/src/main/java/zio/logging/slf4j/bridge/LoggerRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/slf4j2-bridge/src/main/java/zio/logging/slf4j/bridge/ZioSLF4JServiceProvider.java b/slf4j2-bridge/src/main/java/zio/logging/slf4j/bridge/ZioSLF4JServiceProvider.java index d0f565a36..2045e58ec 100644 --- a/slf4j2-bridge/src/main/java/zio/logging/slf4j/bridge/ZioSLF4JServiceProvider.java +++ b/slf4j2-bridge/src/main/java/zio/logging/slf4j/bridge/ZioSLF4JServiceProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/slf4j2-bridge/src/main/scala/zio/logging/slf4j/bridge/Slf4jBridge.scala b/slf4j2-bridge/src/main/scala/zio/logging/slf4j/bridge/Slf4jBridge.scala index e10b85321..e22cd2984 100644 --- a/slf4j2-bridge/src/main/scala/zio/logging/slf4j/bridge/Slf4jBridge.scala +++ b/slf4j2-bridge/src/main/scala/zio/logging/slf4j/bridge/Slf4jBridge.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/slf4j2-bridge/src/main/scala/zio/logging/slf4j/bridge/ZioLoggerRuntime.scala b/slf4j2-bridge/src/main/scala/zio/logging/slf4j/bridge/ZioLoggerRuntime.scala index 188a5153d..a959b9015 100644 --- a/slf4j2-bridge/src/main/scala/zio/logging/slf4j/bridge/ZioLoggerRuntime.scala +++ b/slf4j2-bridge/src/main/scala/zio/logging/slf4j/bridge/ZioLoggerRuntime.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/slf4j2/src/main/scala/zio/logging/slf4j/SLF4J.scala b/slf4j2/src/main/scala/zio/logging/slf4j/SLF4J.scala index cbf4fec13..722350c74 100644 --- a/slf4j2/src/main/scala/zio/logging/slf4j/SLF4J.scala +++ b/slf4j2/src/main/scala/zio/logging/slf4j/SLF4J.scala @@ -1,5 +1,5 @@ /* - * Copyright 2019-2023 John A. De Goes and the ZIO Contributors + * Copyright 2019-2024 John A. De Goes and the ZIO Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.