I have a freshly installed Sentry 21.2 on premise and try to connect it with Swift SDK version 6.2.1 . However the test message was not shown in the dashboard. The swift code is attached below:
// main.swift
// TestCli
//
// Created by jnlin on 2021/3/5.
//
import Foundation
import Sentry
SentrySDK.start { options in
options.dsn = "https://my.dsn@number/"
options.debug = true // Enabled debug when first installing is always helpful
}
SentrySDK.capture(message: "Hello Sentry!")
print("Hello, World!")
Does anybody have similar issues? The other SDKs (golang/javascript/php) works fine.