Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 azure 函数中设置 Gelf 记录器。我目前正在使用这个记录器并尝试添加一个 nlog.config 文件。我设法创建了文件但无法编辑它,有人知道为什么吗?
由于您是在门户上开发 azure 功能,因此您可以直接编辑文件。
如果portal有问题,你可以选择使用kudu来编辑你的function app的文件:
1、前往https://yourfunctionappname.scm.azurewebsites.net/DebugConsole。
https://yourfunctionappname.scm.azurewebsites.net/DebugConsole
2,然后转到D:\home\site\wwwroot>。然后您可以找到您的函数应用的文件并对其进行编辑。这可以避免在 azure portal 上遇到奇怪的问题。
请让我知道这是否可行。