From 837689ae9cbb503987729950326375cddc18549c Mon Sep 17 00:00:00 2001 From: devxb Date: Mon, 15 Apr 2024 16:57:13 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20Sentry=20test=EB=A5=BC=20=EC=82=AD?= =?UTF-8?q?=EC=A0=9C=ED=95=9C=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../render/controller/SentryController.kt | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 src/main/kotlin/org/gitanimals/render/controller/SentryController.kt diff --git a/src/main/kotlin/org/gitanimals/render/controller/SentryController.kt b/src/main/kotlin/org/gitanimals/render/controller/SentryController.kt deleted file mode 100644 index 364bfd4..0000000 --- a/src/main/kotlin/org/gitanimals/render/controller/SentryController.kt +++ /dev/null @@ -1,14 +0,0 @@ -package org.gitanimals.render.controller - -import io.sentry.Sentry -import org.springframework.web.bind.annotation.GetMapping -import org.springframework.web.bind.annotation.RestController - -@RestController -class SentryController { - - @GetMapping("/sentries") - fun sentryCall() { - Sentry.captureException(IllegalArgumentException("This is test.")) - } -}