Ignore:
Timestamp:
Aug 14, 2022, 8:13:05 PM (2 years ago)
Author:
alloc
Message:

Updated logging strings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements2/WebServer/src/WebPermissions.cs

    r395 r399  
    184184
    185185                private void OnFileChanged (object _source, FileSystemEventArgs _e) {
    186                         Log.Out ("Reloading " + SettingsFileName);
     186                        Log.Out ("[Web] [Perms] Reloading " + SettingsFileName);
    187187                        Load ();
    188188                }
     
    193193
    194194                        if (!File.Exists (SettingsFullPath)) {
    195                                 Log.Out ($"Permissions file '{SettingsFileName}' not found, creating.");
     195                                Log.Out ($"[Web] [Perms] Permissions file '{SettingsFileName}' not found, creating.");
    196196                                Save ();
    197197                                return;
    198198                        }
    199199
    200                         Log.Out ($"Loading permissions file at '{SettingsFullPath}'");
     200                        Log.Out ($"[Web] [Perms] Loading permissions file at '{SettingsFullPath}'");
    201201
    202202                        XmlDocument xmlDoc = new XmlDocument ();
     
    205205                                xmlDoc.Load (SettingsFullPath);
    206206                        } catch (XmlException e) {
    207                                 Log.Error ("Failed loading permissions file: " + e.Message);
     207                                Log.Error ("[Web] [Perms] Failed loading permissions file: " + e.Message);
    208208                                return;
    209209                        }
     
    212212
    213213                        if (adminToolsNode == null) {
    214                                 Log.Error ("Failed loading permissions file: No DocumentElement found");
     214                                Log.Error ("[Web] [Perms] Failed loading permissions file: No DocumentElement found");
    215215                                return;
    216216                        }
     
    227227                        }
    228228
    229                         Log.Out ("Loading permissions file done.");
     229                        Log.Out ("[Web] [Perms] Loading permissions file done.");
    230230                }
    231231
     
    237237
    238238                                if (subChild.NodeType != XmlNodeType.Element) {
    239                                         Log.Warning ($"Unexpected XML node found in 'admintokens' section: {subChild.OuterXml}");
     239                                        Log.Warning ($"[Web] [Perms] Unexpected XML node found in 'admintokens' section: {subChild.OuterXml}");
    240240                                        continue;
    241241                                }
     
    244244
    245245                                if (!lineItem.HasAttribute ("name")) {
    246                                         Log.Warning ($"Ignoring admintoken-entry because of missing 'name' attribute: {subChild.OuterXml}");
     246                                        Log.Warning ($"[Web] [Perms] Ignoring admintoken-entry because of missing 'name' attribute: {subChild.OuterXml}");
    247247                                        continue;
    248248                                }
    249249
    250250                                if (!lineItem.HasAttribute ("token")) {
    251                                         Log.Warning ($"Ignoring admintoken-entry because of missing 'token' attribute: {subChild.OuterXml}");
     251                                        Log.Warning ($"[Web] [Perms] Ignoring admintoken-entry because of missing 'token' attribute: {subChild.OuterXml}");
    252252                                        continue;
    253253                                }
    254254
    255255                                if (!lineItem.HasAttribute ("permission_level")) {
    256                                         Log.Warning ($"Ignoring admintoken-entry because of missing 'permission_level' attribute: {subChild.OuterXml}");
     256                                        Log.Warning ($"[Web] [Perms] Ignoring admintoken-entry because of missing 'permission_level' attribute: {subChild.OuterXml}");
    257257                                        continue;
    258258                                }
     
    262262                                if (!int.TryParse (lineItem.GetAttribute ("permission_level"), out int permissionLevel)) {
    263263                                        Log.Warning (
    264                                                 $"Ignoring admintoken-entry because of invalid (non-numeric) value for 'permission_level' attribute: {subChild.OuterXml}");
     264                                                $"[Web] [Perms] Ignoring admintoken-entry because of invalid (non-numeric) value for 'permission_level' attribute: {subChild.OuterXml}");
    265265                                        continue;
    266266                                }
     
    277277
    278278                                if (subChild.NodeType != XmlNodeType.Element) {
    279                                         Log.Warning ($"Unexpected XML node found in 'permissions' section: {subChild.OuterXml}");
     279                                        Log.Warning ($"[Web] [Perms] Unexpected XML node found in 'permissions' section: {subChild.OuterXml}");
    280280                                        continue;
    281281                                }
     
    284284
    285285                                if (!lineItem.HasAttribute ("module")) {
    286                                         Log.Warning ($"Ignoring permission-entry because of missing 'module' attribute: {subChild.OuterXml}");
     286                                        Log.Warning ($"[Web] [Perms] Ignoring permission-entry because of missing 'module' attribute: {subChild.OuterXml}");
    287287                                        continue;
    288288                                }
    289289
    290290                                if (!lineItem.HasAttribute ("permission_level")) {
    291                                         Log.Warning ($"Ignoring permission-entry because of missing 'permission_level' attribute: {subChild.OuterXml}");
     291                                        Log.Warning ($"[Web] [Perms] Ignoring permission-entry because of missing 'permission_level' attribute: {subChild.OuterXml}");
    292292                                        continue;
    293293                                }
     
    295295                                if (!int.TryParse (lineItem.GetAttribute ("permission_level"), out int permissionLevel)) {
    296296                                        Log.Warning (
    297                                                 $"Ignoring permission-entry because of invalid (non-numeric) value for 'permission_level' attribute: {subChild.OuterXml}");
     297                                                $"[Web] [Perms] Ignoring permission-entry because of invalid (non-numeric) value for 'permission_level' attribute: {subChild.OuterXml}");
    298298                                        continue;
    299299                                }
Note: See TracChangeset for help on using the changeset viewer.