Files
xen-orchestra/@xen-orchestra/log/src/transports/memory.js
Julien Fontanet 0fe70b1a91 feat(log): new lib to help logging (#3414)
Fixes #2414
Related to #1669
2018-09-17 17:02:27 +02:00

8 lines
142 B
JavaScript

export default () => {
const memoryLogger = log => {
logs.push(log)
}
const logs = (memoryLogger.logs = [])
return memoryLogger
}