diff --git a/src/main/kotlin/com/android/trisolarisserver/controller/Auth.kt b/src/main/kotlin/com/android/trisolarisserver/controller/Auth.kt index 06263ac..0045adf 100644 --- a/src/main/kotlin/com/android/trisolarisserver/controller/Auth.kt +++ b/src/main/kotlin/com/android/trisolarisserver/controller/Auth.kt @@ -85,7 +85,7 @@ class Auth( } val user = appUserRepo.findByFirebaseUid(decoded.uid) ?: throw ResponseStatusException(HttpStatus.UNAUTHORIZED, "User not found") - logger.info("Auth verify resolved uid={}, userId={}", decoded.uid, user.id) + logger.warn("Auth verify resolved uid={}, userId={}", decoded.uid, user.id) return MyPrincipal( userId = user.id ?: throw ResponseStatusException(HttpStatus.UNAUTHORIZED, "User id missing"), firebaseUid = decoded.uid diff --git a/src/main/resources/application-prod.properties b/src/main/resources/application-prod.properties index 678bf54..45bf25e 100644 --- a/src/main/resources/application-prod.properties +++ b/src/main/resources/application-prod.properties @@ -1,2 +1,3 @@ spring.datasource.url=jdbc:postgresql://localhost:5432/trisolaris ai.llama.baseUrl=http://localhost:8089/v1/chat/completions +logging.level.com.android.trisolarisserver.controller.Auth=INFO