Skip to content

Commit 4e003f9

Browse files
authored
AbstractScmProvider: replace printlin with project.logger (#123)
1 parent e7f59d0 commit 4e003f9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/groovy/nebula/plugin/info/scm/AbstractScmProvider.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ abstract class AbstractScmProvider implements ScmInfoProvider {
5050
protected RegularFile findFile(Project starting, String filename) {
5151
RegularFile file = starting.layout.projectDirectory.file(filename)
5252
if (file.asFile.exists()) {
53-
println("found" +filename + " at " + file.asFile.absolutePath)
53+
starting.logger.info("found" +filename + " at " + file.asFile.absolutePath)
5454
return file
5555
}
5656
if (starting.parent == null) {

0 commit comments

Comments
 (0)