chore: Add ellipsis to users fetching log message

This commit adds an ellipsis to the log message displayed when fetching users from the database, to indicate that the operation is in progress. This small change improves the readability of the logs and clarity of operations status.

Signed-off-by: Mathis <avnyr@yidhra.fr>
This commit is contained in:
Mathis H (Avnyr) 2024-05-15 09:37:39 +02:00
parent b72e715d0f
commit 064b51e0bd
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -26,7 +26,7 @@ class DatabasesService {
async getAllUsers() { async getAllUsers() {
const result = await this.maria.query("SELECT * FROM users"); const result = await this.maria.query("SELECT * FROM users");
this.logs.debug('Fetching users from database', result) this.logs.debug('Fetching users from database...', result)
return result; return result;
} }
} }