Skip to content

Commit

Permalink
Removed extraneous logging for registering implementations
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfrog26 committed Apr 14, 2023
1 parent f62d749 commit 7b29b19
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := "spice"
ThisBuild / organization := "com.outr"
ThisBuild / version := "0.0.25"
ThisBuild / version := "0.0.26-SNAPSHOT"

val scala213: String = "2.13.10"
val scala3: String = "3.2.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ object OkHttpClientImplementation extends Moduload with HttpClientImplementation
override protected def createInstance(client: HttpClient): HttpClientInstance = new OkHttpClientInstance(client)

override def load(): Unit = {
scribe.info(s"Registering OkHttpClientImplementation...")
HttpClientImplementationManager.register(_ => this)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ object UndertowServerImplementation extends Moduload {
LogManager.getLogManager.reset()
Logger.system.installJUL()

scribe.info(s"Registering UndertowServerImplementation...")
HttpServerImplementationManager.register(new UndertowServerImplementation(_))
}

Expand Down

0 comments on commit 7b29b19

Please sign in to comment.