Skip to content

Commit

Permalink
�Api-Release-v0.0.2-5
Browse files Browse the repository at this point in the history
hotfix : enum 추가
  • Loading branch information
imenuuu authored Jun 8, 2024
2 parents 72f8343 + 4163e1a commit cd734af
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 69 deletions.
66 changes: 0 additions & 66 deletions .ebextensions-dev/promtail.config

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,11 @@ public Object calculateApiMs(ProceedingJoinPoint joinPoint) throws Throwable{
try{
return joinPoint.proceed();
} finally {
long finish = System.currentTimeMillis();
long timeMs = finish - start;
log.info("END: {} {}ms", method, timeMs);
if(!IGNORE_METHODS.contains(method)) {
long finish = System.currentTimeMillis();
long timeMs = finish - start;
log.info("END: {} {}ms", method, timeMs);
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public enum SmellKeyword {
TROPICALFRUIT("FRUIT","TROPICALFRUIT","열대과일"),
FLOWER("NATURAL", "FLOWER","꽃향"),
GRASSWOOD("NATURAL", "GRASSWOOD","풀/나무"),
NATURAL("NATURAL","NATURAL","자연향"),
HERB("NATURAL","HERB","허브향"),
OAK("OAK","OAK","오크향"),
SPICE("OAK","SPICE","향신료"),
Expand Down

0 comments on commit cd734af

Please sign in to comment.