Reference Source

js/utils/old_logs.js

  1.  
  2. // var API = require('./logs_console');
  3. import * as API_winston from './logs_winston'
  4. import * as API_console from './logs_console'
  5.  
  6.  
  7.  
  8. const mw = API_winston
  9.  
  10.  
  11. let API = {}
  12. // API.enabled = true
  13.  
  14.  
  15. API.enable_trace = function()
  16. {
  17. API.enabled = true
  18. }
  19. // mw.enable_trace = API.enable_trace
  20.  
  21.  
  22. API.disable_trace = function()
  23. {
  24. API.enabled = false
  25. }
  26. // mw.disable_trace = API.disable_trace
  27.  
  28. API.get_trace = function()
  29. {
  30. return API.enabled
  31. }
  32. // mw.get_trace = API.get_trace
  33.  
  34.  
  35. API.set_trace = function(arg_value)
  36. {
  37. API.enabled = arg_value
  38. }
  39. // mw.set_trace = API.set_trace
  40.  
  41.  
  42. API.toggle_trace = function()
  43. {
  44. API.enabled = ! API.enabled
  45. }
  46. // mw.toggle_trace = API.toggle_trace
  47.  
  48.  
  49. function should_trace(arg_level, arg_module)
  50. {
  51. return API.enabled ? API.enabled : false // && ! /executable_route/.test(arg_module)
  52. }
  53. // mw.should_trace = API.should_trace
  54. API.should_trace = should_trace
  55.  
  56.  
  57. API.debug = function(arg_module, arg_msg, arg_val_1, arg_val_2, arg_val_3)
  58. {
  59. if ( should_trace('debug', arg_module) )
  60. {
  61. mw.debug(arg_module, arg_msg, arg_val_1, arg_val_2, arg_val_3)
  62. }
  63. }
  64.  
  65.  
  66. API.info = function(arg_module, arg_msg, arg_val_1, arg_val_2, arg_val_3)
  67. {
  68. if ( should_trace('info', arg_module) )
  69. {
  70. mw.info(arg_module, arg_msg, arg_val_1, arg_val_2, arg_val_3)
  71. }
  72. }
  73.  
  74.  
  75. API.warn = function(arg_module, arg_msg, arg_val_1, arg_val_2, arg_val_3)
  76. {
  77. if ( should_trace('warn', arg_module) )
  78. {
  79. mw.warn(arg_module, arg_msg, arg_val_1, arg_val_2, arg_val_3)
  80. }
  81. }
  82.  
  83.  
  84. API.error = function(arg_module, arg_msg)
  85. {
  86. if ( should_trace('error', arg_module) )
  87. {
  88. mw.error(arg_module, arg_msg)
  89. }
  90. }
  91.  
  92. module.exports = API
  93. export default API