Skip to content

Commit d15c0e8

Browse files
committed
cleanup
1 parent 18d0f6d commit d15c0e8

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

index.ts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ logger.critical('hello critical', {"some":"stuff"});
1919

2020
const app = express();
2121

22-
// app.listen(4000, () => {
23-
// console.log(`Server is listening on port 4000`);
24-
// });
22+
app.listen(4000, () => {
23+
console.log(`Server is listening on port 4000`);
24+
});
2525

26-
// app.get('/', (req, res) => {
27-
// var logger = new BuffLog();
28-
// logger.notice("Notice log via endpoint");
29-
// logger.info('hello info');
30-
// logger.debug('hello debug');
31-
// logger.notice('hello notice');
32-
// logger.warning('hello warning');
33-
// logger.error('hello error');
34-
// logger.critical('hello critical');
35-
// });
26+
app.get('/', (req, res) => {
27+
var logger = new BuffLog();
28+
logger.notice("Notice log via endpoint");
29+
logger.info('hello info');
30+
logger.debug('hello debug');
31+
logger.notice('hello notice');
32+
logger.warning('hello warning');
33+
logger.error('hello error');
34+
logger.critical('hello critical');
35+
});

0 commit comments

Comments
 (0)