Skip to content

Commit 00cf3bc

Browse files
comment out text and csv lines debug (#94)
1 parent a6b1460 commit 00cf3bc

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/renderer/outputLoader.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,7 @@ export class OutputLoader {
3434
// try parsing text data
3535
let textData: string = this.outputData.text();
3636
if (textData.length > 0) {
37-
console.log('data.table:text:',
38-
textData.substring(0, Math.min(80, textData.length)), '...');
39-
37+
// console.log('data.table:text:', textData.substring(0, Math.min(80, textData.length)), '...');
4038
// see if text data is in json data format
4139
const jsonData = this.getJsonData(textData);
4240
if (jsonData !== undefined) {
@@ -198,7 +196,7 @@ export class OutputLoader {
198196
const minRows: number = Math.min(lines.length, maxLines);
199197

200198
if (lines.length > 0) {
201-
console.log('data.table:lines:', lines);
199+
// console.log('data.table:lines:', lines);
202200
const columns: string[] = lines[0].split(',');
203201
const columnCount = columns.length;
204202

0 commit comments

Comments
 (0)