File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
src/main/java/org/gitlab4j/api Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 99
1010import javax .servlet .http .HttpServletRequest ;
1111
12- import org .gitlab4j .api .GitLabApi ;
1312import org .gitlab4j .api .GitLabApiException ;
1413import org .gitlab4j .api .HookManager ;
1514import org .gitlab4j .api .utils .HttpRequestUtils ;
2322 */
2423public class SystemHookManager implements HookManager {
2524
25+ private final static Logger LOGGER = Logger .getLogger (SystemHookManager .class .getName ());
2626 public static final String SYSTEM_HOOK_EVENT = "System Hook" ;
27- private final static Logger LOGGER = GitLabApi .getLogger ();
2827 private final JacksonJson jacksonJson = new JacksonJson ();
2928
3029 // Collection of objects listening for System Hook events.
Original file line number Diff line number Diff line change 99
1010import javax .servlet .http .HttpServletRequest ;
1111
12- import org .gitlab4j .api .GitLabApi ;
1312import org .gitlab4j .api .GitLabApiException ;
1413import org .gitlab4j .api .HookManager ;
1514import org .gitlab4j .api .utils .HttpRequestUtils ;
2019 */
2120public class WebHookManager implements HookManager {
2221
23- private final static Logger LOGGER = GitLabApi .getLogger ();
22+ private final static Logger LOGGER = Logger .getLogger (WebHookManager . class . getName () );
2423 private final JacksonJson jacksonJson = new JacksonJson ();
2524
2625 // Collection of objects listening for WebHook events.
You can’t perform that action at this time.
0 commit comments