Method: Boxen::Config#logfile
- Defined in:
- lib/boxen/config.rb
#logfile ⇒ Object
Boxen’s log file. Default is ‘“##repodir/log/boxen.log”`. Respects the BOXEN_LOG_FILE environment variable. The log is overwritten on every run.
134 135 136 |
# File 'lib/boxen/config.rb', line 134 def logfile @logfile || ENV["BOXEN_LOG_FILE"] || "#{repodir}/log/boxen.log" end |