Add pages to WFC

This commit is contained in:
Bryan Ashby
2022-06-04 15:37:31 -06:00
parent 2e4df79d52
commit 3d191a9c6c
2 changed files with 96 additions and 34 deletions

View File

@@ -364,7 +364,7 @@ exports.ThemeManager = class ThemeManager {
async.each([ ...this.availableThemes.keys() ], (themeId, nextThemeId) => {
this._loadTheme(themeId, err => {
if (!err) {
Log.info({ themeId }, 'Theme reloaded');
Log.info({ themeId }, `Theme "${themeId}" reloaded`);
}
return nextThemeId(null); // always proceed
});