Skip to content

Commit

Permalink
Clean up native logs
Browse files Browse the repository at this point in the history
  • Loading branch information
olegbl committed Jun 22, 2024
1 parent 1c13ce6 commit 796da7d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/ModAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export function getModAPI(
return result;
},
writeTsv: (filePath: string, data: TSVData): void => {
console.debug('D2RMM.writeTsv', filePath, data);
console.debug('D2RMM.writeTsv', filePath);
if (!runtime.options.isDryRun) {
throwIfError(
runtime.BridgeAPI.writeTsv(
Expand All @@ -126,7 +126,7 @@ export function getModAPI(
return result;
},
writeJson: (filePath: string, data: JSONData): void => {
console.debug('D2RMM.writeJson', filePath, data);
console.debug('D2RMM.writeJson', filePath);
if (!runtime.options.isDryRun) {
throwIfError(
runtime.BridgeAPI.writeJson(
Expand Down Expand Up @@ -167,7 +167,7 @@ export function getModAPI(
return result;
},
writeTxt: (filePath: string, data: string): void => {
console.debug('D2RMM.writeTxt', filePath, data);
console.debug('D2RMM.writeTxt', filePath);
if (!runtime.options.isDryRun) {
throwIfError(
runtime.BridgeAPI.writeTxt(
Expand All @@ -187,7 +187,7 @@ export function getModAPI(
return result;
},
writeSaveFile: (filePath: string, data: ArrayBuffer): void => {
console.debug('D2RMM.writeSaveFile', filePath, data);
console.debug('D2RMM.writeSaveFile', filePath);
if (!runtime.options.isDryRun) {
throwIfError(
runtime.BridgeAPI.writeBinaryFile(filePath, 'Saves', data),
Expand Down

0 comments on commit 796da7d

Please sign in to comment.