Take control over your live stream video by running it yourself. Streaming + chat out of the box.
 
 
 
 
 
 

16 lines
364 B

package logging
import (
"path/filepath"
"github.com/owncast/owncast/config"
)
// GetTranscoderLogFilePath returns the logging path for the transcoder log output.
func GetTranscoderLogFilePath() string {
return filepath.Join(config.LogDirectory, "transcoder.log")
}
func getLogFilePath() string {
return filepath.Join(config.LogDirectory, "owncast.log")
}