mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-24 01:16:15 -04:00
logs: on the server, use template literals when possible
It's just synctactic sugar, but it is always better than executing string concatenations in one's mind. Do not do this with files in src/static, because we want to keep IE 11 compatibility.
This commit is contained in:
parent
0e972aaecf
commit
27b3b0ecd2
5 changed files with 15 additions and 15 deletions
|
@ -353,7 +353,7 @@ function listSessionsWithDBKey (dbkey, callback)
|
|||
{
|
||||
if (err == "apierror: sessionID does not exist")
|
||||
{
|
||||
console.warn("Found bad session " + sessionID + " in " + dbkey + ".");
|
||||
console.warn(`Found bad session ${sessionID} in ${dbkey}`);
|
||||
}
|
||||
else if(ERR(err, callback))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue