better debugs

This commit is contained in:
Girish Ramakrishnan
2024-10-30 20:58:31 +01:00
parent b6023afb29
commit 553c256d31
2 changed files with 3 additions and 2 deletions

View File

@@ -219,11 +219,11 @@ async function restartIfActivated() {
const activated = await users.isActivated();
if (!activated) {
debug('restartMailIfActivated: skipping restart of mail container since Cloudron is not activated yet');
debug('restartIfActivated: skipping restart of mail container since Cloudron is not activated yet');
return; // not provisioned yet, do not restart container after dns setup
}
debug('restartMailIfActivated: restarting on activated');
debug('restartIfActivated: restarting on activated');
await restart();
}