@netlify/build 27.12.1-beta → 27.12.3-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/log/logger.js +1 -1
package/package.json
CHANGED
package/src/log/logger.js
CHANGED
|
@@ -157,5 +157,5 @@ export const getSystemLogger = function (logs, debug, systemLogFile) {
|
|
|
157
157
|
logError(logs, 'Could not write to system log file')
|
|
158
158
|
})
|
|
159
159
|
|
|
160
|
-
return (...args) => fileDescriptor.write(
|
|
160
|
+
return (...args) => fileDescriptor.write(reduceLogLines(args))
|
|
161
161
|
}
|