Browse Source

modified log

0xdcarns 3 years ago
parent
commit
a51d145e5e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      auth/auth.go

+ 2 - 2
auth/auth.go

@@ -63,11 +63,11 @@ func InitializeAuthProvider() string {
 	var authInfo = servercfg.GetAuthProviderInfo()
 	var authInfo = servercfg.GetAuthProviderInfo()
 	var serverConn = servercfg.GetAPIHost()
 	var serverConn = servercfg.GetAPIHost()
 	if strings.Contains(serverConn, "localhost") || strings.Contains(serverConn, "127.0.0.1") {
 	if strings.Contains(serverConn, "localhost") || strings.Contains(serverConn, "127.0.0.1") {
-		logic.Log("localhost OAuth detected, proceeding with insecure http redirect", 1)
 		serverConn = "http://" + serverConn
 		serverConn = "http://" + serverConn
+		logic.Log("localhost OAuth detected, proceeding with insecure http redirect: "+serverConn+")", 1)
 	} else {
 	} else {
-		logic.Log("external OAuth detected, proceeding with https redirect", 1)
 		serverConn = "https://" + serverConn
 		serverConn = "https://" + serverConn
+		logic.Log("external OAuth detected, proceeding with https redirect: ("+serverConn+")", 1)
 	}
 	}
 
 
 	functions[init_provider].(func(string, string, string))(serverConn+"/api/oauth/callback", authInfo[1], authInfo[2])
 	functions[init_provider].(func(string, string, string))(serverConn+"/api/oauth/callback", authInfo[1], authInfo[2])