Skip to content

Commit

Permalink
chore: test why verify on native windows does not work
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkAtra committed Jun 30, 2024
1 parent bebd38f commit deb2cb7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ class ServerEntityConverter : EntityConverter<Server> {
override fun getEntityType(): Class<Server> = Server::class.java

override fun fromDocument(document: Document, nitriteMapper: NitriteMapper): Server {
@Suppress("DEPRECATION")
return Server(
id = document.get(Server::id.name, String::class.java),
version = document.get(Server::version.name) as Long,
Expand Down Expand Up @@ -45,6 +46,7 @@ class ServerEntityConverter : EntityConverter<Server> {
}

override fun toDocument(server: Server, nitriteMapper: NitriteMapper): Document {
@Suppress("DEPRECATION")
return Document.createDocument().apply {
put(Server::id.name, server.id)
put(Server::version.name, server.version)
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ logging:
level:
root: info
com.ibasco.agql: warn
org.dizitart.no2: debug
pattern:
console: "%clr(%d{yyyy-MM-dd'T'HH:mm:ss.SSSXXX}){faint} %clr(%5p) %clr(${PID:-}){magenta} %clr(---){faint} %clr([%15.15t]){faint} %clr(%-40.40logger{39}){cyan} %clr(:){faint} %m %mdc%n%wEx"

Expand Down

0 comments on commit deb2cb7

Please sign in to comment.