Skip to content
Snippets Groups Projects
Commit c5cb6b4a authored by OZGCloud's avatar OZGCloud
Browse files

fix logging for package de.ozgcloud

parent c39412eb
No related branches found
No related tags found
No related merge requests found
...@@ -37,12 +37,17 @@ public class AspectPointcuts { ...@@ -37,12 +37,17 @@ public class AspectPointcuts {
// aspect pointcut - no implementation needed // aspect pointcut - no implementation needed
} }
@Pointcut("anyPublicMethods() && anythingInKOP()") @Pointcut("within(de.ozgcloud..*)")
void anyPublicMethodInKOP() { void anythingInOzgCloud() {
// aspect pointcut - no implementation needed // aspect pointcut - no implementation needed
} }
@Pointcut("anyPublicMethodInKOP() && @target(org.springframework.stereotype.Service)") @Pointcut("anyPublicMethods() && (anythingInKOP() || anythingInOzgCloud())")
void anyPublicMethodInOzgCloud() {
// aspect pointcut - no implementation needed
}
@Pointcut("anyPublicMethodInOzgCloud() && @target(org.springframework.stereotype.Service)")
void anyPublicServiceMethod() { void anyPublicServiceMethod() {
// aspect pointcut - no implementation needed // aspect pointcut - no implementation needed
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment