我有一段代码,已启用了开发人员模式,但日志仍未记录在App见解中。
static void Main(string[] args)
{
{
try
{
int a = 5;
int b = 0;
int c = a / b;
}
catch (Exception ex)
{
CreateLogAI(ex, "code");
}
}
}
public static void CreateLogAI(Exception ex, string CodeBlock)
{
TelemetryClient TeleClient = new TelemetryClient();
TelemetryConfiguration.Active.InstrumentationKey = "XXXX";
try
{
TeleClient.TrackException(ex);
TelemetryConfiguration.Active.TelemetryChannel.DeveloperMode = true;
}
catch (Exception exception)
{
throw exception;
}
finally { TeleClient.Flush(); }
}
所以我提到了文章数。开发人员模式和冲洗功能应该可以使用。这是我的示例代码。我在这里想念什么?
答案 0 :(得分:0)
在Flush()之后睡眠。 Thread.Sleep(5000);
答案 1 :(得分:0)