diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-03-25 09:05:23 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-03-25 09:05:23 -0400 |
commit | a2f35f6c35b96e3103d8eb6c2bdefc7c081f72f2 (patch) | |
tree | 2c706178997e107bbc1fd4fe4d907927643d9d9e /ufund-api/src/main/java/com/ufund/api/ufundapi/controller/AuthController.java | |
parent | c15aa3daab0cf9a640945d4e634d1327fb55d2db (diff) | |
download | JellySolutions-a2f35f6c35b96e3103d8eb6c2bdefc7c081f72f2.tar.gz JellySolutions-a2f35f6c35b96e3103d8eb6c2bdefc7c081f72f2.tar.bz2 JellySolutions-a2f35f6c35b96e3103d8eb6c2bdefc7c081f72f2.zip |
Tweak logging
Diffstat (limited to 'ufund-api/src/main/java/com/ufund/api/ufundapi/controller/AuthController.java')
-rw-r--r-- | ufund-api/src/main/java/com/ufund/api/ufundapi/controller/AuthController.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ufund-api/src/main/java/com/ufund/api/ufundapi/controller/AuthController.java b/ufund-api/src/main/java/com/ufund/api/ufundapi/controller/AuthController.java index 6ba6160..aa99a90 100644 --- a/ufund-api/src/main/java/com/ufund/api/ufundapi/controller/AuthController.java +++ b/ufund-api/src/main/java/com/ufund/api/ufundapi/controller/AuthController.java @@ -35,7 +35,7 @@ public class AuthController { */ @PostMapping("") public ResponseEntity<String> login(@RequestBody Map<String, String> params) { - LOG.log(Level.INFO, "POST /auth body: {0}", params); + LOG.log(Level.INFO, "POST /auth body={0}", params); String username = params.get("username"); String password = params.get("password"); try { @@ -58,7 +58,7 @@ public class AuthController { */ @DeleteMapping("") public ResponseEntity<Object> logout(@RequestHeader("jelly-api-key") String key) { - LOG.log(Level.INFO, "DELETE /auth key: {0}", key); + LOG.log(Level.INFO, "DELETE /auth key={0}", key); try { authService.logout(key); return new ResponseEntity<>(HttpStatus.OK); |