Unable to add Gelf config file into Azure function app

67 Views Asked by At

I'm trying to setup a Gelf logger in azure function. I'm currently using this logger and trying to add a nlog.config file. I managed to create the file but unable to edit it, does anyone know why?

enter image description here

1

There are 1 best solutions below

1
On

Since you are develop azure function on portal, then you can edit the file directly.

If portal has some problems, you can choose to use kudu to edit the files of your function app:

1, Go to https://yourfunctionappname.scm.azurewebsites.net/DebugConsole.

2, Then go to D:\home\site\wwwroot>. Then you can find the files of your function app and edit it. This can avoid facing strange problems on azure portal.

Please let me know whether this can work.