Skip to content

Commit 9717e9f

Browse files
committed
add back debug
1 parent 0953edf commit 9717e9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/redhat/labs/omp/service/ProjectService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public List<ProjectSearchResults> getAllProjectsByNane(String name) {
5757
public List<Project> getProjectsByGroup(int groupId, Boolean includeSubgroups) {
5858
List<Project> projects = gitLabService.getProjectsbyGroup(groupId, includeSubgroups);
5959

60-
if(LOGGER.isTraceEnabled()) {
60+
if(LOGGER.isDebugEnabled()) {
6161
LOGGER.trace("project count group id({}) {}", groupId, projects.size());
6262
projects.stream().forEach(project -> LOGGER.debug("Group {} Project {}", groupId, project.getName()));
6363
}

0 commit comments

Comments
 (0)