mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 04:40:37 +03:00
15 lines
280 B
Go
15 lines
280 B
Go
package logging
|
|
|
|
import (
|
|
"path/filepath"
|
|
|
|
"github.com/owncast/owncast/config"
|
|
)
|
|
|
|
func GetTranscoderLogFilePath() string {
|
|
return filepath.Join(config.LogDirectory, "transcoder.log")
|
|
}
|
|
|
|
func getLogFilePath() string {
|
|
return filepath.Join(config.LogDirectory, "owncast.log")
|
|
}
|