Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
GrantBirki committed Apr 25, 2024
1 parent 7f79f3d commit d207eb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cli.cr
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module Runway
log = self.logger(opts[:log_level])
log.info { Emoji.emojize(":book: loading runway configuration") }

log.debug { "attempting to load config from #{opts[:config_path]}"}
log.debug { "attempting to load config from #{opts[:config_path]}" }
config = RunwayConfiguration.from_yaml(File.open(opts[:config_path]))
log.info { Emoji.emojize(":white_check_mark: loaded configuration successfully") }

Expand Down
2 changes: 1 addition & 1 deletion src/runway.cr
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Runway
def self.start(log, config)
log.info { Emoji.emojize(":airplane: starting runway") }
log.info { "#{config. projects.size} #{config.projects.size == 1 ? "project" : "projects"} loaded" }
log.info { "#{config.projects.size} #{config.projects.size == 1 ? "project" : "projects"} loaded" }
end
end

0 comments on commit d207eb7

Please sign in to comment.