mirror of
https://github.com/jlengrand/Maestro.git
synced 2026-03-10 08:31:19 +00:00
version bump
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "maestro",
|
||||
"version": "0.12.3",
|
||||
"version": "0.13.0",
|
||||
"description": "Maestro hones fractured attention into focused intent.",
|
||||
"main": "dist/main/index.js",
|
||||
"author": {
|
||||
|
||||
@@ -1445,8 +1445,16 @@ function setupIpcHandlers() {
|
||||
});
|
||||
}
|
||||
|
||||
child.on('close', (code) => {
|
||||
console.log('[TTS Main] Process exited with code:', code);
|
||||
child.on('close', (code, signal) => {
|
||||
console.log('[TTS Main] Process exited with code:', code, 'signal:', signal);
|
||||
// Always log close event for debugging production issues
|
||||
logger.info('TTS process closed', 'TTS', {
|
||||
ttsId,
|
||||
exitCode: code,
|
||||
signal,
|
||||
stderr: stderrOutput || '(none)',
|
||||
command: fullCommand,
|
||||
});
|
||||
if (code !== 0 && stderrOutput) {
|
||||
console.error('[TTS Main] stderr:', stderrOutput);
|
||||
logger.error('TTS process error output', 'TTS', {
|
||||
|
||||
Reference in New Issue
Block a user