forked from TrueCloudLab/frostfs-node
[#1085] log: Move storage log message to constants package
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
parent
5be36924e3
commit
e5e0542482
2 changed files with 3 additions and 4 deletions
|
@ -201,6 +201,7 @@ const (
|
||||||
SubscriberCantCastBlockEventValueToBlock = "can't cast block event value to block"
|
SubscriberCantCastBlockEventValueToBlock = "can't cast block event value to block"
|
||||||
SubscriberCantCastNotifyEventValueToTheNotaryRequestStruct = "can't cast notify event value to the notary request struct"
|
SubscriberCantCastNotifyEventValueToTheNotaryRequestStruct = "can't cast notify event value to the notary request struct"
|
||||||
SubscriberUnsupportedNotificationFromTheChain = "unsupported notification from the chain"
|
SubscriberUnsupportedNotificationFromTheChain = "unsupported notification from the chain"
|
||||||
|
StorageOperation = "local object storage operation"
|
||||||
BlobovniczaCreatingDirectoryForBoltDB = "creating directory for BoltDB"
|
BlobovniczaCreatingDirectoryForBoltDB = "creating directory for BoltDB"
|
||||||
BlobovniczaOpeningBoltDB = "opening BoltDB"
|
BlobovniczaOpeningBoltDB = "opening BoltDB"
|
||||||
BlobovniczaInitializing = "initializing..."
|
BlobovniczaInitializing = "initializing..."
|
||||||
|
|
|
@ -1,16 +1,14 @@
|
||||||
package storagelog
|
package storagelog
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"git.frostfs.info/TrueCloudLab/frostfs-node/internal/logs"
|
||||||
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util/logger"
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util/logger"
|
||||||
"go.uber.org/zap"
|
"go.uber.org/zap"
|
||||||
)
|
)
|
||||||
|
|
||||||
// headMsg is a distinctive part of all messages.
|
|
||||||
const headMsg = "local object storage operation"
|
|
||||||
|
|
||||||
// Write writes message about storage engine's operation to logger.
|
// Write writes message about storage engine's operation to logger.
|
||||||
func Write(logger *logger.Logger, fields ...zap.Field) {
|
func Write(logger *logger.Logger, fields ...zap.Field) {
|
||||||
logger.Debug(headMsg, fields...)
|
logger.Debug(logs.StorageOperation, fields...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// AddressField returns logger's field for object address.
|
// AddressField returns logger's field for object address.
|
||||||
|
|
Loading…
Reference in a new issue