You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// The Application Insights SDK adds a default logging filter that instructs ILogger to capture only Warning and more severe logs. Application Insights requires an explicit override.
124
124
// Log levels can also be configured using appsettings.json. For more information, see https://learn.microsoft.com/azure/azure-monitor/app/worker-service#ilogger-logs
>Whenyouinjectan `ILogger<T>` inyourclassconstructor, likethepreviousexample, thelogcategoryisautomaticallysettothefullyqualifiednameofthatclass, suchas `MyFunctionApp.MyFunction`. Thesecategorynamescontain `.` (period) characters. WhenyouhostyourfunctionapponLinux, youcan't use environment variables to override log levels for categories that contain periods. To work around this limitation, you can instead [configure log levels in your code](#managing-log-levels) or in an `appsettings.json` file.
The following function code accepts two parameters `category` and `id` in the route and writes a response using both parameters.
709
+
The following function code accepts two parameters `category` and `id` in the route and writes a response using both parameters. The first piece of the variable is the name, and the second is a [route constraint](/aspnet/core/fundamentals/routing#route-constraints).
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-core-tools-reference.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -278,7 +278,7 @@ The following publish options apply, based on version:
278
278
|**`--list-ignored-files`**| Displays a list of files that are ignored during publishing, which is based on the `.funcignore` file. |
279
279
|**`--list-included-files`**| Displays a list of files that are published, which is based on the `.funcignore` file. |
280
280
|**`--no-build`**| Project isn't built during publishing. For Python, `pip install` isn't performed. |
281
-
|**`--nozip`**| Turns the default `Run-From-Package` mode off. |
281
+
|**`--nozip`**| Turns the default `Run-From-Package` mode off. Files are extracted to the `wwwroot` folder on the server instead of running directly from the deployment package. |
282
282
|**`--overwrite-settings -y`**| Suppress the prompt to overwrite app settings when `--publish-local-settings -i` is used.|
283
283
|**`--publish-local-settings -i`**| Publish settings in local.settings.json to Azure, prompting to overwrite if the setting already exists. If you're using a [local storage emulator](functions-develop-local.md#local-storage-emulator), first change the app setting to an [actual storage connection](#func-azure-storage-fetch-connection-string). |
284
284
|**`--publish-settings-only`**, **`-o`**| Only publish settings and skip the content. Default is prompt. |
0 commit comments