Skip to content

Commit

Permalink
remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwparas committed Dec 29, 2024
1 parent 9cc8280 commit bd59f10
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions cogs/installer/parser.scm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

(define (parse-cog module [search-from #f])
;; TODO: This needs to handle relative paths
(displayln "searching for: " module)
; (displayln "searching for: " module)
(if (is-dir? module)
(let ([cog-path (convert-path (string-append module "/cog.scm"))])
(if (is-file? cog-path)
Expand All @@ -38,9 +38,7 @@
;; This is no good - need to do platform agnostic separator
(define new-search-path
(convert-path (string-append (trim-end-matches search-from "/") "/" module)))

(displayln "Searching in: " new-search-path)

; (displayln "Searching in: " new-search-path)
(parse-cog new-search-path))

(error! "Unable to locate the module " module))))
Expand Down

0 comments on commit bd59f10

Please sign in to comment.