Skip to content

Commit e81ae43

Browse files
committed
updates
1 parent c000e30 commit e81ae43

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

articles/app-service/quickstart-golang.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,11 @@ az login
6767
Create the webapp and other resources, then deploy your code to Azure using [az webapp up](/cli/azure/webapp#az-webapp-up).
6868

6969
```azurecli
70-
az webapp up --runtime GO:1.18 --sku B1 --logs
70+
az webapp up --runtime GO:1.18 --sku B1
7171
```
7272

7373
* The `--runtime` parameter specifies what version of Go your app is running. This example uses Go 1.18. To list all available runtimes, use the command `az webapp list-runtimes --os linux --output table`.
7474
* The `--sku` parameter defines the size (CPU, memory) and cost of the app service plan. This example uses the B1 (Basic) service plan, which will incur a small cost in your Azure subscription. For a full list of App Service plans, view the [App Service pricing](https://azure.microsoft.com/pricing/details/app-service/linux/) page.
75-
* The `--logs` flag configures default logging required to enable viewing the log stream immediately after launching the webapp.
7675
* You can optionally specify a name with the argument `--name <app-name>`. If you don't provide one, then a name will be automatically generated.
7776
* You can optionally include the argument `--location <location-name>` where `<location_name>` is an available Azure region. You can retrieve a list of allowable regions for your Azure account by running the [`az account list-locations`](/cli/azure/appservice#az-appservice-list-locations) command.
7877

@@ -84,7 +83,6 @@ Creating Resource group '&lt;group-name>' ...
8483
Resource group creation complete
8584
Creating AppServicePlan '&lt;app-service-plan-name>' ...
8685
Creating webapp '&lt;app-name>' ...
87-
Configuring default logging for the app, if not already enabled
8886
Creating zip with contents of dir /home/tulika/myGoApp ...
8987
Getting scm site credentials for zip deployment
9088
Starting zip deployment. This operation can take a while to complete ...

0 commit comments

Comments
 (0)