diff --git a/application/source/document/files.go b/application/source/document/files.go
index f773d14a471e69bddfc918f59690ba829a13ab02..b8d21c4bb31d9152b342452bc05cb3b316580f67 100644
--- a/application/source/document/files.go
+++ b/application/source/document/files.go
@@ -5,7 +5,6 @@ package document
 
 import (
 	"errors"
-	"fmt"
 	"os"
 	"path"
 	"path/filepath"
@@ -52,10 +51,6 @@ func buildFileMap(files []*SourceFile) (SourceFileMap, []string) {
 		return files[i].relSourcePath < files[j].relSourcePath
 	})
 
-	for _, f := range files {
-		fmt.Println(f.relSourcePath, f.level)
-	}
-
 	keys := make([]string, 0, len(files))
 	mapFiles := make(map[string]*SourceFile)
 	for _, file := range files {