We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 986d018 commit 0592c54Copy full SHA for 0592c54
packages/app/src/cli/models/app/app.ts
@@ -447,11 +447,7 @@ export class App<
447
}
448
449
getLogsDir() {
450
- // Create directory name using app name + partial client_id for uniqueness
451
- const clientId = String(this.configuration.client_id || 'unknown')
452
- const shortClientId = clientId.substring(0, 8)
453
- const dirName = `${this.name}-${shortClientId}`
454
- return joinPath(this.directory, '.shopify', 'logs', dirName)
+ return joinPath(this.directory, '.shopify', 'logs')
455
456
457
async updateHiddenConfig(values: Partial<AppHiddenConfig>) {
0 commit comments