mirror of
https://github.com/MontFerret/ferret.git
synced 2025-03-23 21:51:08 +02:00
* Fixed logger level * Fixed WAITFOR EVENT parser * Added tracing to Network Manager * Updated logging * Swtitched to value type of logger * Added tracing * Increased websocket maximum buffer size * Ignore unimportant error message * Added support of new CDP API for layouts * Switched to value type of logger * Added log level * Fixed early context cancellation * Updated example of 'click' action * Switched to val for elements lookup * Fixed unit tests * Refactored 'eval' module * Fixed SetStyle eval expression * Fixed style deletion * Updated logic of setting multiple styles
22 lines
449 B
Go
22 lines
449 B
Go
package common
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/rs/zerolog"
|
|
)
|
|
|
|
var (
|
|
ErrReadOnly = core.Error(core.ErrInvalidOperation, "read only")
|
|
ErrInvalidPath = core.Error(core.ErrInvalidOperation, "invalid path")
|
|
)
|
|
|
|
func CloseAll(logger zerolog.Logger, closers []io.Closer, msg string) {
|
|
for _, closer := range closers {
|
|
if err := closer.Close(); err != nil {
|
|
logger.Error().Err(err).Msg(msg)
|
|
}
|
|
}
|
|
}
|