Skip to content

Commit 0678350

Browse files
author
John Corser
committed
chore: improve logging
1 parent 103b512 commit 0678350

3 files changed

+7
-6
lines changed

src/generateAutosubsyncSubtitles.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export async function generateAutosubsyncSubtitles(srtPath: string, videoPath: s
1212
await access(outputPath);
1313
return {
1414
success: true,
15-
message: `Skipping ${srtBaseName} - already processed`,
15+
message: `Skipping ${outputPath} - already processed`,
1616
};
1717
} catch (error) {
1818
// File doesn't exist, proceed with sync
@@ -24,13 +24,13 @@ export async function generateAutosubsyncSubtitles(srtPath: string, videoPath: s
2424
await execPromise(command);
2525
return {
2626
success: true,
27-
message: `Successfully processed: ${srtBaseName}`,
27+
message: `Successfully processed: ${outputPath}`,
2828
};
2929
} catch (error) {
3030
const errorMessage = error instanceof Error ? error.message : 'Unknown error';
3131
return {
3232
success: false,
33-
message: `Error processing ${srtBaseName}: ${errorMessage}`,
33+
message: `Error processing ${outputPath}: ${errorMessage}`,
3434
};
3535
}
3636
}

src/generateFfsubsyncSubtitles.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export async function generateFfsubsyncSubtitles(srtPath: string, videoPath: str
1212
await access(outputPath);
1313
return {
1414
success: true,
15-
message: `Skipping ${srtBaseName} - already processed`,
15+
message: `Skipping ${outputPath} - already processed`,
1616
};
1717
} catch (error) {
1818
// File doesn't exist, proceed with sync
@@ -24,13 +24,13 @@ export async function generateFfsubsyncSubtitles(srtPath: string, videoPath: str
2424
await execPromise(command);
2525
return {
2626
success: true,
27-
message: `Successfully processed: ${srtBaseName}`,
27+
message: `Successfully processed: ${outputPath}`,
2828
};
2929
} catch (error) {
3030
const errorMessage = error instanceof Error ? error.message : 'Unknown error';
3131
return {
3232
success: false,
33-
message: `Error processing ${srtBaseName}: ${errorMessage}`,
33+
message: `Error processing ${outputPath}: ${errorMessage}`,
3434
};
3535
}
3636
}

src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const SCAN_DIR = '/scan_dir';
88

99
async function main(): Promise<void> {
1010
const scanDir = SCAN_DIR;
11+
console.log(`${new Date().toLocaleString()} scanning ${scanDir} for .srt files (this could take a while)...`);
1112

1213
try {
1314
// Find all .srt files

0 commit comments

Comments
 (0)