We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20709f0 commit 9a3d1d5Copy full SHA for 9a3d1d5
resources/lib/UnityHTTPD.php
@@ -48,7 +48,10 @@ public static function redirect(?string $dest = null): never
48
self::die();
49
}
50
51
- // assumes that a session is started and has a good unique session_id
+ /* generate a unique ID that can be logged and also displayed to the user when something has
52
+ gone wrong. This way the user can give us the ID and we can find the exact line in the log
53
+ file that represents their issue.
54
+ assumes that a session is started and has a good unique session_id */
55
public static function errorID(?\Throwable $e = null): string
56
{
57
$e ??= new stdClass();
0 commit comments