Skip to content

Commit

Permalink
fix: allow log level config
Browse files Browse the repository at this point in the history
  • Loading branch information
nrkruk committed Feb 26, 2025
1 parent ea97daf commit e70e398
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/lightning/dev/site.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default class LightningDevSite extends SfCommand<void> {

// Internal vs external mode
const internalProject = !fs.existsSync('sfdx-project.json') && fs.existsSync('lwr.config.json');
const logLevel = process.env.LOG_LEVEL ?? (internalProject ? 'info' : 'error');
const logLevel = process.env.LOG_LEVEL ?? 'error';

const startupParams: SitesLocalDevOptions = {
sfCLI: !internalProject,
Expand Down

0 comments on commit e70e398

Please sign in to comment.