Skip to content

Commit c68b4df

Browse files
author
Gabriel Nepomuceno
committed
Correcting error messsages according to the instructions on dotnet#258
1 parent 9cf7460 commit c68b4df

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Microsoft.ML.Data/Dirty/PredictorBase.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public abstract class PredictorBase<TOutput> : IPredictorProducing<TOutput>
1919
{
2020
public const string NormalizerWarningFormat =
2121
"Ignoring integrated normalizer while loading a predictor of type {0}.{1}" +
22-
" Please contact tlcsupp for assistance with converting legacy models.";
22+
" Please go to https://aka.ms/MLNetIssue for assistance with converting legacy models.";
2323

2424
protected readonly IHost Host;
2525

src/Microsoft.ML.Maml/MAML.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -183,16 +183,16 @@ internal static int MainCore(TlcEnvironment env, string args, bool alwaysPrintSt
183183
if (count == 0)
184184
{
185185
// Didn't recognize any of the exceptions.
186-
ch.Error(MessageSensitivity.None, "***** Unexpected failure. Please contact 'tlcsupp' with details *****");
186+
ch.Error(MessageSensitivity.None, "***** Unexpected failure. Please go to https://aka.ms/MLNetIssue annd register the error details *****");
187187
if (isDumpSaved)
188188
{
189-
ch.Error(MessageSensitivity.None, "***** Error log has been saved to '{0}', please send this file to 'tlcsupp' *****",
189+
ch.Error(MessageSensitivity.None, "***** Error log has been saved to '{0}', please register the error at https://aka.ms/MLNetIssue *****",
190190
dumpFilePath);
191191
}
192192
}
193193
else if (isDumpSaved)
194194
{
195-
ch.Error(MessageSensitivity.None, "Error log has been saved to '{0}'. Please send this file to 'tlcsupp' if you need assistance.",
195+
ch.Error(MessageSensitivity.None, "Error log has been saved to '{0}'. please register the error at https://aka.ms/MLNetIssue",
196196
dumpFilePath);
197197
}
198198

0 commit comments

Comments
 (0)