Skip to content

Commit ef92c48

Browse files
authoredNov 18, 2024··
fix: turn log line into system log (#5910)
1 parent 319d6b3 commit ef92c48

File tree

1 file changed

+1
-2
lines changed
  • packages/build/src/plugins_core/pre_dev_cleanup

1 file changed

+1
-2
lines changed
 

‎packages/build/src/plugins_core/pre_dev_cleanup/index.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { resolve } from 'node:path'
33

44
import { listFrameworks } from '@netlify/framework-info'
55

6-
import { log } from '../../log/logger.js'
76
import { CoreStep, CoreStepCondition, CoreStepFunction, CoreStepFunctionArgs } from '../types.js'
87

98
const dirExists = async (path: string): Promise<boolean> => {
@@ -37,7 +36,7 @@ const coreStep: CoreStepFunction = async (input) => {
3736
for (const dir of dirs) {
3837
await rm(resolve(input.buildDir, dir), { recursive: true, force: true })
3938
}
40-
log(input.logs, `Cleaned up ${dirs.join(', ')}.`)
39+
input.systemLog(input.logs, `Cleaned up ${dirs.join(', ')}.`)
4140
return {}
4241
}
4342

0 commit comments

Comments
 (0)
Please sign in to comment.