0

我需要通过编程我自己的 Discord 机器人来获得帮助。我想在代码中写“LogLevel = LogLevel.Debug, UseInternalLoghandler = true”,但 Visulas Studio 犯了两个错误。它说没有 LogLevel 和 UnseInternalLoghandler 的定义。有人可以帮助我吗?也许我忘记了“使用”+ ...,但我不知道

4

1 回答 1

0

我有类似的错误,我设法修复Loglevel.Debug但无法修复UseInterNalLogHandler

所以LogLevel.Debug你可以使用这个。

  • Microsoft.Extensions.Logging.LogLevel.Debug
  • 或者只是using Microsoft.Extensions.Logging.LogLevel.Debug在代码的顶部。

抱歉帮不上忙UseInternalLoghandler

于 2021-12-12T18:05:38.967 回答