Skip to content

Commit

Permalink
fix: logging message when logging matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
leoreisdias committed Sep 8, 2023
1 parent 1082669 commit aec3e9e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/excel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ const exportFile = (
if (exportAs.type === "filepath") {
return XLSX.writeFile(wb, exportAs.path);
}

return null;
};

export const exportmeExcelAdvanced = ({
Expand Down Expand Up @@ -97,7 +99,7 @@ export const exportmeExcelAdvanced = ({

if (loggingMatrix) {
console.info(
`💡 Excel-Ent - Logging Matrix: ${JSON.stringify(rowsAdapter)}`
`💡 Excel-Ent:Logging-Matrix: ${JSON.stringify(rowsAdapter)}`
);
}

Expand Down

0 comments on commit aec3e9e

Please sign in to comment.