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/UrlHandlers/ItemIconHandler.cs

    r391 r399  
    2828                        if (!loaded) {
    2929                                _context.Response.StatusCode = (int) HttpStatusCode.InternalServerError;
    30                                 Log.Out ("Web:IconHandler: Icons not loaded");
     30                                Log.Out ("[Web] IconHandler: Icons not loaded");
    3131                                return;
    3232                        }
     
    4545                                _context.Response.StatusCode = (int) HttpStatusCode.NotFound;
    4646                                if (logMissingFiles) {
    47                                         Log.Out ("Web:IconHandler:FileNotFound: \"" + _context.RequestPath + "\" ");
     47                                        Log.Out ("[Web] IconHandler: FileNotFound: \"" + _context.RequestPath + "\" ");
    4848                                }
    4949                        }
     
    8383                                        loadIconsFromFolder (GameIO.GetGameDir ("Data/ItemIcons"), tintedIcons);
    8484                                } catch (Exception e) {
    85                                         Log.Error ("Failed loading icons from base game");
     85                                        Log.Error ("[Web] Failed loading icons from base game");
    8686                                        Log.Exception (e);
    8787                                }
     
    9393                                                loadIconsFromFolder (modIconsPath, tintedIcons);
    9494                                        } catch (Exception e) {
    95                                                 Log.Error ("Failed loading icons from mod " + mod.ModInfo.Name.Value);
     95                                                Log.Error ("[Web] Failed loading icons from mod " + mod.ModInfo.Name.Value);
    9696                                                Log.Exception (e);
    9797                                        }
     
    9999
    100100                                loaded = true;
    101                                 Log.Out ("Web:IconHandler: Icons loaded - {0} ms", microStopwatch.ElapsedMilliseconds);
     101                                Log.Out ("[Web] IconHandler: Icons loaded - {0} ms", microStopwatch.ElapsedMilliseconds);
    102102
    103103                                return true;
Note: See TracChangeset for help on using the changeset viewer.