mirror of
https://github.com/rclone/rclone.git
synced 2024-11-26 10:13:52 +08:00
23 lines
458 B
Go
23 lines
458 B
Go
|
// Package bilib provides common stuff for bisync and bisync_test
|
||
|
package bilib
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"log"
|
||
|
|
||
|
"github.com/sirupsen/logrus"
|
||
|
)
|
||
|
|
||
|
// CaptureOutput runs a function capturing its output.
|
||
|
func CaptureOutput(fun func()) []byte {
|
||
|
logSave := log.Writer()
|
||
|
logrusSave := logrus.StandardLogger().Writer()
|
||
|
buf := &bytes.Buffer{}
|
||
|
log.SetOutput(buf)
|
||
|
logrus.SetOutput(buf)
|
||
|
fun()
|
||
|
log.SetOutput(logSave)
|
||
|
logrus.SetOutput(logrusSave)
|
||
|
return buf.Bytes()
|
||
|
}
|