mirror of
https://github.com/zrepl/zrepl.git
synced 2025-04-04 14:30:36 +02:00
13 lines
241 B
Go
13 lines
241 B
Go
package driver
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zrepl/zrepl/internal/daemon/logging"
|
|
"github.com/zrepl/zrepl/internal/logger"
|
|
)
|
|
|
|
func getLog(ctx context.Context) logger.Logger {
|
|
return logging.GetLogger(ctx, logging.SubsysReplication)
|
|
}
|