Skip to content

Commit 9f1b6aa

Browse files
committed
Use more apropriate project type in log message
Previously, the more general project filter type was used, but the specific project type that was detected will be more useful information.
1 parent cdc6ce0 commit 9f1b6aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project/project.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ func findProjectsUnderPath(targetPath *paths.Path, projectType projecttype.Type,
6666

6767
isProject, foundProjectType := isProject(targetPath, projectType)
6868
if isProject {
69-
logrus.Tracef("%s is %s", targetPath, projectType)
69+
logrus.Tracef("%s is %s", targetPath, foundProjectType)
7070
foundProject := Type{
7171
Path: targetPath,
7272
ProjectType: foundProjectType,

0 commit comments

Comments
 (0)