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:
parent
b72e715d0f
commit
064b51e0bd
@ -26,7 +26,7 @@ class DatabasesService {
|
||||
|
||||
async getAllUsers() {
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user