I am referring this link to log exceptions from log4net to azure table storage.
Now i need to do the same in azure functions in .net core, but since there is no config files in azure functions am not able to use the same there.
Any help appreciated to get any reference on this.
Now i need to do the same in azure functions in .net core, but since there is no config files in azure functions am not able to use the same there?
Seems you are trying to read some property what we usually read from config file. Yes you can do it in
Azure Function
also. There is file namelocal.settings.json
you can read your required property from here. See the example below:local.settings.json:
Read Your Property On Azure Function From
local.settings.json
:Debug & Testing:
See the screen shot below:
If you still have any problem feel free to share. Thanks and happy coding!