TODO: Should we create a "GetLogPath" function that returns a STATIC log filename/path, with the current date/time appended to it, so it's the same file per each run? GetLogFilePath returns the full path to the current log file
()
| 24 | |
| 25 | // GetLogFilePath returns the full path to the current log file |
| 26 | func GetLogFilePath() string { |
| 27 | return GetLogsPath() + "/clobber.log" |
| 28 | } |
| 29 | |
| 30 | // GetLogsPath returns the full path to the logs directory |
| 31 | func GetLogsPath() string { |
no test coverage detected