forked from ard/ruoyi-api

Administrator
2024-02-29 454b5a4b87b5c2ffe34f67a53797d6aeb7941995
1
2
3
4
5
6
7
8
9
10
11
12
module.exports = function silence (logName, exports) {
  const logs = {}
  Object.keys(exports).forEach(key => {
    if (key !== 'error') {
      exports[key] = (...args) => {
        if (!logs[key]) logs[key] = []
        logs[key].push(args)
      }
    }
  })
  exports[logName] = logs
}