refactor: move scrubbingLogger to the scrubber pkg (#394)

* refactor: move scrubbingLogger to the scrubber pkg

We need it exported so we can use it in the new implementation.

Part of https://github.com/ooni/probe/issues/1687

* fix test
This commit is contained in:
Simone Basso 2021-06-22 14:43:58 +02:00 committed by GitHub
commit 1eb6e758c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 181 additions and 145 deletions

View file

@ -12,7 +12,7 @@ type Logger interface {
// Info emits an informational message.
Info(msg string)
// Infof format and emits an informational message.
// Infof formats and emits an informational message.
Infof(format string, v ...interface{})
// Warn emits a warning message.