logger.js 541 B

123456789101112131415161718
  1. "use strict";
  2. /**
  3. * @license
  4. * Copyright Google LLC All Rights Reserved.
  5. *
  6. * Use of this source code is governed by an MIT-style license that can be
  7. * found in the LICENSE file at https://angular.dev/license
  8. */
  9. Object.defineProperty(exports, "__esModule", { value: true });
  10. exports.defaultLogger = void 0;
  11. exports.defaultLogger = {
  12. debug: m => console.debug(m),
  13. error: m => console.error(m),
  14. fatal: m => console.error(m),
  15. info: m => console.info(m),
  16. warn: m => console.warn(m),
  17. };
  18. //# sourceMappingURL=logger.js.map