We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 018b9f1 commit 8d5de48Copy full SHA for 8d5de48
src/index.js
@@ -1,29 +1,5 @@
1
-import { intercept } from './utils';
+import Logger from './logger';
2
3
export { default as Emoji } from './emoji';
4
5
-export default class Logger {
6
- static success(args) {
7
- return intercept(this.success.name, args);
8
- }
9
-
10
- static info(args) {
11
- return intercept(this.info.name, args);
12
13
14
- static warn(args) {
15
- return intercept(this.warn.name, args);
16
17
18
- static error(args) {
19
- return intercept(this.error.name, args);
20
21
22
- static trace(args) {
23
- return intercept(this.trace.name, args);
24
25
26
- static debug(args) {
27
- return intercept(this.debug.name, args);
28
29
-}
+export default Logger;
0 commit comments