Add color to host link
This commit is contained in:
parent
74c17bcd8e
commit
d077fdc016
|
@ -1,7 +1,7 @@
|
|||
import { PostListener } from "./routes";
|
||||
import express from "express";
|
||||
import dotenv from "dotenv";
|
||||
import { checkFile, Logger } from "./utils";
|
||||
import { checkFile, emp, Logger } from "./utils";
|
||||
import { ReviewData } from "./utils/ReviewData";
|
||||
dotenv.config();
|
||||
|
||||
|
@ -15,5 +15,5 @@ const port = +process.env.PORT || 8080;
|
|||
post.start();
|
||||
|
||||
app.listen(port, () => {
|
||||
logger.log(`Server started on http://localhost:${port}`);
|
||||
logger.log(`Server started on ${emp(`http://localhost:${port}`)}`);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue