Removing logging of error in coercion - this was creating noise in errors channel.

This commit is contained in:
Michael Drury 2023-06-21 12:07:46 +01:00
parent 5c14712c7f
commit e1741937ae
1 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,5 @@
// @ts-nocheck
import { FieldTypes } from "../../constants"
import { logging } from "@budibase/backend-core"
const parseArrayString = value => {
if (typeof value === "string") {
@ -12,7 +11,7 @@ const parseArrayString = value => {
result = JSON.parse(value.replace(/'/g, '"'))
return result
} catch (e) {
logging.logWarn("Could not parse row value", e)
return value
}
}
return value