diff options
author | Akash Keshav <112591754+domesticchores@users.noreply.github.com> | 2025-03-18 16:53:39 -0400 |
---|---|---|
committer | Akash Keshav <112591754+domesticchores@users.noreply.github.com> | 2025-03-18 16:53:39 -0400 |
commit | 81b93fc671ba35d67c414937e18b686fd6d5f861 (patch) | |
tree | e19ad608e4d27a5c5f6620ce41aa1b53a99f4274 /ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java | |
parent | 9d90b2a29b1f47b6271fd9ea87989a4195cf5ee6 (diff) | |
download | JellySolutions-81b93fc671ba35d67c414937e18b686fd6d5f861.tar.gz JellySolutions-81b93fc671ba35d67c414937e18b686fd6d5f861.tar.bz2 JellySolutions-81b93fc671ba35d67c414937e18b686fd6d5f861.zip |
idk but it works. funding basket worsk. -ak
Diffstat (limited to 'ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java')
-rw-r--r-- | ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java b/ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java index 3c310df..bf3d917 100644 --- a/ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java +++ b/ufund-api/src/main/java/com/ufund/api/ufundapi/controller/CupboardController.java @@ -144,7 +144,7 @@ public class CupboardController { */ @PutMapping("/{id}") public ResponseEntity<Need> updateNeed(@RequestBody Need need, @PathVariable int id) { - LOG.log(Level.INFO, "RAHHHHH " + need); + LOG.log(Level.INFO, "Updating need: " + need); try { Need updatedNeed = cupboardService.updateNeed(need, id); if (updatedNeed != null) { |