Skip to content

Commit

Permalink
changed file from .txt to .log
Browse files Browse the repository at this point in the history
  • Loading branch information
smitshah2531 committed Jul 20, 2020
1 parent f0dea9b commit 4e74df6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/apex-node/src/logs/logService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class LogService {
if (!fs.existsSync(outputDir)) {
fs.mkdirSync(outputDir, { recursive: true });
}
const filePath = path.join(`${outputDir}`, `${id}.txt`);
const filePath = path.join(`${outputDir}`, `${id}.log`);
const stream = fs.createWriteStream(filePath);
stream.write(logRecord);
stream.end();
Expand Down

0 comments on commit 4e74df6

Please sign in to comment.