Commit d40a4aa9 authored by Shivprakash Bapat's avatar Shivprakash Bapat
Browse files

added loggers

No related merge requests found
Showing with 4 additions and 2 deletions
......@@ -8,6 +8,7 @@ import (
"github.com/tidwall/sjson"
"corelab.mkcl.org/MKCLOS/coredevelopmentplatform/corepkgv2/cachemdl"
"corelab.mkcl.org/MKCLOS/coredevelopmentplatform/corepkgv2/loggermdl"
)
// Entry is a data to be stored against a key.
......@@ -119,6 +120,7 @@ func RetrieveAll() map[string]interface{} {
// RetrieveAndExtend returns the entry and extends the entry expiration by provided `SECONDS`, only if remaining time < extendBy.
// If extendBy < 0, it is same as Retrieve function.
func RetrieveAndExtend(key string, extendBy int64) (Entry, error) {
loggermdl.LogError("*** RetrieveAndExtend ******** key: ", key)
entry, err := Retrieve(key)
if err != nil {
return Entry{}, err
......
......@@ -7,8 +7,8 @@ import (
"github.com/tidwall/gjson"
"github.com/tidwall/sjson"
"corelab.mkcl.org/MKCLOS/coredevelopmentplatform/corepkgv2/loggermdl"
"corelab.mkcl.org/MKCLOS/coredevelopmentplatform/corepkgv2/v2/cachemdl"
"corelab.mkcl.org/MKCLOS/coredevelopmentplatform/corepkgv2/v2/loggermdl"
)
// Entry is a data to be stored against a key.
......@@ -121,7 +121,7 @@ func RetrieveAll() map[string]interface{} {
// If extendBy < 0, it is same as Retrieve function.
func RetrieveAndExtend(key string, extendBy int64) (Entry, error) {
loggermdl.LogError("***RetrieveAndExtend******** key: ", key)
loggermdl.LogError("*** v2 RetrieveAndExtend******** key: ", key)
entry, err := Retrieve(key)
if err != nil {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment