logger.js 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var Logger = /** @class */ (function () {
  4. function Logger(id) {
  5. this.id = id;
  6. this.start = Date.now();
  7. }
  8. // eslint-disable-next-line @typescript-eslint/no-explicit-any
  9. Logger.prototype.debug = function () {
  10. var args = [];
  11. for (var _i = 0; _i < arguments.length; _i++) {
  12. args[_i] = arguments[_i];
  13. }
  14. // eslint-disable-next-line no-console
  15. if (typeof window !== 'undefined' && window.console && typeof console.debug === 'function') {
  16. // eslint-disable-next-line no-console
  17. console.debug.apply(console, [this.id, this.getTime() + "ms"].concat(args));
  18. }
  19. else {
  20. this.info.apply(this, args);
  21. }
  22. };
  23. Logger.prototype.getTime = function () {
  24. return Date.now() - this.start;
  25. };
  26. Logger.create = function (id) {
  27. Logger.instances[id] = new Logger(id);
  28. };
  29. Logger.destroy = function (id) {
  30. delete Logger.instances[id];
  31. };
  32. Logger.getInstance = function (id) {
  33. var instance = Logger.instances[id];
  34. if (typeof instance === 'undefined') {
  35. throw new Error("No logger instance found with id " + id);
  36. }
  37. return instance;
  38. };
  39. // eslint-disable-next-line @typescript-eslint/no-explicit-any
  40. Logger.prototype.info = function () {
  41. var args = [];
  42. for (var _i = 0; _i < arguments.length; _i++) {
  43. args[_i] = arguments[_i];
  44. }
  45. // eslint-disable-next-line no-console
  46. if (typeof window !== 'undefined' && window.console && typeof console.info === 'function') {
  47. // eslint-disable-next-line no-console
  48. console.info.apply(console, [this.id, this.getTime() + "ms"].concat(args));
  49. }
  50. };
  51. // eslint-disable-next-line @typescript-eslint/no-explicit-any
  52. Logger.prototype.error = function () {
  53. var args = [];
  54. for (var _i = 0; _i < arguments.length; _i++) {
  55. args[_i] = arguments[_i];
  56. }
  57. // eslint-disable-next-line no-console
  58. if (typeof window !== 'undefined' && window.console && typeof console.error === 'function') {
  59. // eslint-disable-next-line no-console
  60. console.error.apply(console, [this.id, this.getTime() + "ms"].concat(args));
  61. }
  62. else {
  63. this.info.apply(this, args);
  64. }
  65. };
  66. Logger.instances = {};
  67. return Logger;
  68. }());
  69. exports.Logger = Logger;
  70. //# sourceMappingURL=logger.js.map