mirror of
https://github.com/lordmathis/lemma.git
synced 2025-11-06 16:04:23 +00:00
Remove too many debug messages
This commit is contained in:
@@ -43,18 +43,13 @@ func NewServiceWithOptions(rootDir string, options Options) *Service {
|
||||
"rootDir", rootDir)
|
||||
|
||||
if options.Fs == nil {
|
||||
log.Debug("filesystem not provided, using default osFS")
|
||||
options.Fs = &osFS{}
|
||||
}
|
||||
|
||||
if options.NewGitClient == nil {
|
||||
log.Debug("git client factory not provided, using default git.New")
|
||||
options.NewGitClient = git.New
|
||||
}
|
||||
|
||||
log.Info("storage service created",
|
||||
"rootDir", rootDir)
|
||||
|
||||
return &Service{
|
||||
fs: options.Fs,
|
||||
newGitClient: options.NewGitClient,
|
||||
|
||||
Reference in New Issue
Block a user