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

Updated logging strings

Location:
binary-improvements2/WebServer/src/UrlHandlers
Files:
5 edited

Legend:

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

    r394 r399  
    6464                       
    6565                        if (!apis.TryGetValue (apiName, out AbsWebAPI api)) {
    66                                 Log.Out ($"Error in {nameof(ApiHandler)}.HandleRequest(): No handler found for API \"{apiName}\"");
     66                                Log.Warning ($"[Web] In {nameof(ApiHandler)}.HandleRequest(): No handler found for API \"{apiName}\"");
    6767                                _context.Response.StatusCode = (int) HttpStatusCode.NotFound;
    6868                                return;
     
    8585                                apiHandlerSampler.End ();
    8686                        } catch (Exception e) {
    87                                 Log.Error ($"Error in {nameof(ApiHandler)}.HandleRequest(): Handler {api.Name} threw an exception:");
     87                                Log.Error ($"[Web] In {nameof(ApiHandler)}.HandleRequest(): Handler {api.Name} threw an exception:");
    8888                                Log.Exception (e);
    8989                                _context.Response.StatusCode = (int) HttpStatusCode.InternalServerError;
  • 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;
  • binary-improvements2/WebServer/src/UrlHandlers/SessionHandler.cs

    r394 r399  
    7070                                        WebConnection con = connectionHandler.LogIn (id, _context.Request.RemoteEndPoint.Address);
    7171                                        int level = GameManager.Instance.adminTools.GetUserPermissionLevel (con.UserId);
    72                                         Log.Out ("Steam OpenID login from {0} with ID {1}, permission level {2}",
     72                                        Log.Out ("[Web] Steam OpenID login from {0} with ID {1}, permission level {2}",
    7373                                                remoteEndpointString, con.UserId, level);
    7474
     
    8585                                }
    8686                        } catch (Exception e) {
    87                                 Log.Error ("Error validating login:");
     87                                Log.Error ("[Web] Error validating Steam login:");
    8888                                Log.Exception (e);
    8989                        }
    9090
    91                         Log.Out ($"Steam OpenID login failed from {remoteEndpointString}");
     91                        Log.Out ($"[Web] Steam OpenID login failed from {remoteEndpointString}");
    9292                        _context.Response.Redirect (pageErrorPath + "SteamLoginFailed");
    9393                }
  • binary-improvements2/WebServer/src/UrlHandlers/SseHandler.cs

    r391 r399  
    5858
    5959                        if (!events.TryGetValue (eventName, out AbsEvent eventInstance)) {
    60                                 Log.Out ($"Error in {nameof (SseHandler)}.HandleRequest(): No handler found for event \"{eventName}\"");
     60                                Log.Warning ($"[Web] [SSE] In {nameof (SseHandler)}.HandleRequest(): No handler found for event \"{eventName}\"");
    6161                                _context.Response.StatusCode = (int)HttpStatusCode.NotFound;
    6262                                return;
     
    8181                                _context.Response.OutputStream.Flush ();
    8282                        } catch (Exception e) {
    83                                 Log.Error ($"Error in {nameof (SseHandler)}.HandleRequest(): Handler {eventInstance.Name} threw an exception:");
     83                                Log.Error ($"[Web] [SSE] In {nameof (SseHandler)}.HandleRequest(): Handler {eventInstance.Name} threw an exception:");
    8484                                Log.Exception (e);
    8585                                _context.Response.StatusCode = (int)HttpStatusCode.InternalServerError;
     
    9999                                                eventHandler.ProcessSendQueue ();
    100100                                        } catch (Exception e) {
    101                                                 Log.Error ($"SSE ({eventName}): Error processing send queue");
     101                                                Log.Error ($"[Web] [SSE] '{eventName}': Error processing send queue");
    102102                                                Log.Exception (e);
    103103                                        }
  • binary-improvements2/WebServer/src/UrlHandlers/StaticHandler.cs

    r391 r399  
    2828                                _context.Response.StatusCode = (int) HttpStatusCode.NotFound;
    2929                                if (logMissingFiles) {
    30                                         Log.Out ("Web:Static:FileNotFound: \"" + _context.RequestPath + "\" @ \"" + datapath + fn + "\"");
     30                                        Log.Warning ("[Web] Static: FileNotFound: \"" + _context.RequestPath + "\" @ \"" + datapath + fn + "\"");
    3131                                }
    3232                        }
Note: See TracChangeset for help on using the changeset viewer.