Skip to content

Commit 1d340fc

Browse files
konraddysputKonrad Dysput
andauthored
Change documentation url to docs.saucelabs.com (#239)
Co-authored-by: Konrad Dysput <[email protected]>
1 parent 089d754 commit 1d340fc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Runtime/Interfaces/IBacktraceMetrics.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public interface IBacktraceMetrics : IScopeAttributeProvider
1313
/// and custom unique events can be added. Typical values to add are UserID, SteamID and other attributes that uniquely
1414
/// identify an user. This list is persistent, meaning that events will not be removed upon Send() (like for summed events).
1515
/// For non-standard unique events, server side configuration needs to be done.
16-
/// Please refer to the <see href="https://support.backtrace.io">online documentation</see>.
16+
/// Please refer to the <see href="https://docs.saucelabs.com/error-reporting/platform-integrations/unity/metrics/">online documentation</see>.
1717
/// </summary>
1818
//LinkedList<UniqueEvent> UniqueEvents { get; }
1919

@@ -55,14 +55,14 @@ public interface IBacktraceMetrics : IScopeAttributeProvider
5555
/// Adds a summed event to the outgoing queue.
5656
/// </summary>
5757
/// See <see cref="BacktraceClient.Metrics.Send(string, IDictionary)"/>.
58-
/// <param name="metricGroupName">The name of the metric group to be incremented. This metric group must be configured on server side as well, please refer to the <see href = "https://support.backtrace.io" > online documentation</see>.</param>
58+
/// <param name="metricGroupName">The name of the metric group to be incremented. This metric group must be configured on server side as well, please refer to the <see href = "https://docs.saucelabs.com/error-reporting/platform-integrations/unity/metrics/" > online documentation</see>.</param>
5959
/// <returns>true if added successfully, otherwise false.</returns>
6060
bool AddSummedEvent(string metricsGroupName);
6161

6262
/// <summary>
6363
/// Adds a summed event to the outgoing queue.
6464
/// </summary>
65-
/// <param name="metricGroupName">The name of the metric group to be incremented. This metric group must be configured on server side as well, please refer to the <see href = "https://support.backtrace.io" > online documentation</see>.</param>
65+
/// <param name="metricGroupName">The name of the metric group to be incremented. This metric group must be configured on server side as well, please refer to the <see href = "https://docs.saucelabs.com/error-reporting/platform-integrations/unity/metrics/" > online documentation</see>.</param>
6666
/// <param name="attributes">Custom attributes to add. Will be merged with the default attributes, with attribute values provided here overriding any defaults.</param>
6767
/// <returns>true if added successfully, otherwise false.</returns>
6868
bool AddSummedEvent(string metricsGroupName, IDictionary<string, string> attributes);

Runtime/Services/BacktraceApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ private void PrintLog(UnityWebRequest request)
259259
Debug.LogWarning(string.Format("{0}{1}", string.Format("[Backtrace]::Reponse code: {0}, Response text: {1}",
260260
request.responseCode,
261261
request.error),
262-
"\n Please check provided url to Backtrace service or learn more from our integration guide: https://support.backtrace.io/hc/en-us/articles/360040515991-Unity-Integration-Guide"));
262+
"\n Please check provided url to Backtrace service or learn more from our integration guide: https://docs.saucelabs.com/error-reporting/platform-integrations/unity/setup/"));
263263
}
264264

265265
//private string GetParametrizedQuery(string serverUrl, IDictionary<string, string> queryAttributes)

0 commit comments

Comments
 (0)