mirror of
https://github.com/gohugoio/hugo.git
synced 2025-02-16 14:22:54 +00:00
tocss/dartsas: Avoid using Logf for the internal Dart Sass logging
As that does not work when percentages are used in the log messages.
This commit is contained in:
parent
fdb0b7fb19
commit
3ca29b1563
1 changed files with 5 additions and 4 deletions
|
@ -22,6 +22,7 @@ import (
|
|||
|
||||
godartsassv1 "github.com/bep/godartsass"
|
||||
"github.com/bep/godartsass/v2"
|
||||
"github.com/bep/logg"
|
||||
"github.com/gohugoio/hugo/common/herrors"
|
||||
"github.com/gohugoio/hugo/common/hugo"
|
||||
"github.com/gohugoio/hugo/helpers"
|
||||
|
@ -70,10 +71,10 @@ func New(fs *filesystems.SourceFilesystem, rs *resources.Spec) (*Client, error)
|
|||
switch event.Type {
|
||||
case godartsass.LogEventTypeDebug:
|
||||
// Log as Info for now, we may adjust this if it gets too chatty.
|
||||
infol.Logf(message)
|
||||
infol.Log(logg.String(message))
|
||||
default:
|
||||
// The rest are either deprecations or @warn statements.
|
||||
warnl.Logf(message)
|
||||
warnl.Log(logg.String(message))
|
||||
}
|
||||
},
|
||||
})
|
||||
|
@ -86,10 +87,10 @@ func New(fs *filesystems.SourceFilesystem, rs *resources.Spec) (*Client, error)
|
|||
switch event.Type {
|
||||
case godartsassv1.LogEventTypeDebug:
|
||||
// Log as Info for now, we may adjust this if it gets too chatty.
|
||||
infol.Logf(message)
|
||||
infol.Log(logg.String(message))
|
||||
default:
|
||||
// The rest are either deprecations or @warn statements.
|
||||
warnl.Logf(message)
|
||||
warnl.Log(logg.String(message))
|
||||
}
|
||||
},
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue