Skip to content

Commit 47d0526

Browse files
committed
DM1
1 parent 2ce6abf commit 47d0526

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/helpers/csvParsingUtils.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ function stringNormalizer(str) {
77

88
// For translating null/nil-like values into empty strings
99
function normalizeEmptyValues(data, unalterableColumns = []) {
10+
logger.debug('Checking for empty CSV values to normalize');
1011
const EMPTY_VALUES = ['null', 'nil'].map(stringNormalizer);
1112
const normalizedUnalterableColumns = unalterableColumns.map(stringNormalizer);
1213
// Flag tracking if empty values were normalized or not.

src/modules/CSVURLModule.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ class CSVURLModule {
3131
});
3232
logger.debug('Data parsing successful');
3333
this.data = normalizeEmptyValues(parsedData, this.unalterableColumns);
34-
logger.debug('Normalization of empty values successful');
3534
}
3635
}
3736

0 commit comments

Comments
 (0)