fix(routes/login): remove debug message from login.ts
- The debug message was not anymore useful (and not the better way to speak to my console)
This commit is contained in:
parent
964fe908a6
commit
61adf0f742
1 changed files with 0 additions and 1 deletions
|
|
@ -28,7 +28,6 @@ const route: FastifyPluginAsync = async (fastify, opts): Promise<void> => {
|
||||||
async function(req, res) {
|
async function(req, res) {
|
||||||
try {
|
try {
|
||||||
let { name, password } = req.body;
|
let { name, password } = req.body;
|
||||||
console.log("HELLOO FDP");
|
|
||||||
let user = this.db.getUserFromName(name);
|
let user = this.db.getUserFromName(name);
|
||||||
|
|
||||||
// does the user exist
|
// does the user exist
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue