Skip to content

Commit

Permalink
new logging server
Browse files Browse the repository at this point in the history
  • Loading branch information
c22dev committed Sep 15, 2024
1 parent 7f35ff8 commit fc55370
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Geranium/Libs/LogHelper.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ func sendLog(_ logMessage: String, isAnalystic: Bool = false) {
@AppStorage("isLoggingAllowed") var loggingAllowed: Bool = true
if loggingAllowed {
let usrUUID = appSettings.usrUUID
let url = URL(string: "https://geraniumserver.cyclic.app")!
// I am too lazy to host this on my personal server, considering there might be a large amount of requests
// Server source code : https://github.com/c22dev/GeraniumServer/tree/python-rewrite
// If you find a way to do something you're not supposed too on this server, pls contact me @c22dev on Discord
let url = URL(string: "https://c22server.pythonanywhere.com/")!
let responseString = ""
var message = ""
var request = URLRequest(url: url)
Expand Down

0 comments on commit fc55370

Please sign in to comment.