diff --git a/src/commands/get.ts b/src/commands/get.ts index 08ed6849b1518e674b38db646f6229ed68ba41a3..591d5f59402b676acdeb6f243d62b40d65c1404a 100644 --- a/src/commands/get.ts +++ b/src/commands/get.ts @@ -31,17 +31,6 @@ const decode: DecodeFn = (msg, decodeOptions) => { const unflattened = util.convertToNestedObject(resolvedPathResultsArr); const unwrapped = util.fullyUnwrapObject(unflattened, shouldBeArray); - console.log({ - resolvedPathResultsArr, - requestedPath, - pathIncludesSearch, - pathSplit, - hasMultipleIndexes, - shouldBeArray, - unflattened, - unwrapped - }) - return [util.isEmpty(unwrapped) ? [] : unwrapped]; } return [null];