mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-22 00:13:52 +01:00
15 lines
270 B
Go
15 lines
270 B
Go
package platformtest
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zrepl/zrepl/internal/daemon/logging"
|
|
"github.com/zrepl/zrepl/internal/logger"
|
|
)
|
|
|
|
type Logger = logger.Logger
|
|
|
|
func GetLog(ctx context.Context) Logger {
|
|
return logging.GetLogger(ctx, logging.SubsysPlatformtest)
|
|
}
|