Merge pull request #10758 from Budibase/fix/reduce-array-row-parse-log-level
Reduced log level of array parsing on row import
This commit is contained in:
commit
a782a8b9b1
|
@ -12,7 +12,7 @@ const parseArrayString = value => {
|
||||||
result = JSON.parse(value.replace(/'/g, '"'))
|
result = JSON.parse(value.replace(/'/g, '"'))
|
||||||
return result
|
return result
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
logging.logAlert("Could not parse row value", e)
|
logging.logWarn("Could not parse row value", e)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return value
|
return value
|
||||||
|
|
Loading…
Reference in New Issue