Ignore:
Timestamp:
Aug 23, 2020, 9:52:01 AM (4 years ago)
Author:
alloc
Message:

A19 code

Location:
binary-improvements
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements

    • Property svn:ignore
      •  

        old new  
        11bin
         2.idea
  • binary-improvements/MapRendering/Web/Web.cs

    r352 r360  
    245245                                }
    246246                        } catch (Exception e) {
    247                                 Log.Out ("Error in Web.HandleRequest(): " + e);
     247                                Log.Error ("Error in Web.HandleRequest(): ");
     248                                Log.Exception (e);
    248249                        } finally {
    249250                                if (ctx != null && !ctx.Response.SendChunked) {
     
    276277                                if (con != null) {
    277278                                        _con = con;
    278                                         return GameManager.Instance.adminTools.GetAdminToolsClientInfo (_con.SteamID.ToString ())
    279                                                 .PermissionLevel;
     279                                        return GameManager.Instance.adminTools.GetUserPermissionLevel (_con.SteamID.ToString ());
    280280                                }
    281281                        }
     
    297297                                                WebConnection con = connectionHandler.LogIn (id, _req.RemoteEndPoint.Address);
    298298                                                _con = con;
    299                                                 int level = GameManager.Instance.adminTools.GetAdminToolsClientInfo (id.ToString ())
    300                                                         .PermissionLevel;
     299                                                int level = GameManager.Instance.adminTools.GetUserPermissionLevel (id.ToString ());
    301300                                                Log.Out ("Steam OpenID login from {0} with ID {1}, permission level {2}",
    302301                                                        _req.RemoteEndPoint.ToString (), con.SteamID, level);
Note: See TracChangeset for help on using the changeset viewer.