Skip to content

Commit 960719e

Browse files
committed
Clarify example logging details in Blob storage trigger documentation fixes
1 parent eb099ef commit 960719e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

articles/azure-functions/functions-bindings-storage-blob-trigger.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ For examples of using other SDK types, see the [`ContainerClient`](https://githu
263263

264264
To learn more, including what other SDK type bindings are supported, see [SDK type bindings](functions-reference-python.md#sdk-type-bindings).
265265

266-
This example logs information from the incoming blob metadata.
266+
This example logs the blob name and size from the incoming blob trigger.
267267

268268
```python
269269
import logging
@@ -273,8 +273,8 @@ app = func.FunctionApp()
273273

274274
@app.function_name(name="BlobTrigger1")
275275
@app.blob_trigger(arg_name="myblob",
276-
path="PATH/TO/BLOB",
277-
connection="CONNECTION_SETTING")
276+
path="samples-workitems/{name}",
277+
connection="MyStorageAccountAppSetting")
278278
def test_function(myblob: func.InputStream):
279279
logging.info(f"Python blob trigger function processed blob \n"
280280
f"Name: {myblob.name}\n"

0 commit comments

Comments
 (0)