File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ namespace WarmupSample
59
59
{
60
60
// Initialize shared dependencies here
61
61
62
- log .LogInformation (" Function App instance is warm πππ " );
62
+ log .LogInformation (" Function App instance is warm. " );
63
63
}
64
64
}
65
65
}
@@ -75,7 +75,7 @@ The following example shows a warmup trigger that runs when each new instance is
75
75
``` java
76
76
@FunctionName (" Warmup" )
77
77
public void warmup( @WarmupTrigger Object warmupContext, ExecutionContext context) {
78
- context. getLogger(). info(" Function App instance is warm πππ " );
78
+ context. getLogger(). info(" Function App instance is warm. " );
79
79
}
80
80
```
81
81
@@ -104,7 +104,7 @@ Here's the JavaScript code:
104
104
105
105
``` javascript
106
106
module .exports = async function (context , warmupContext ) {
107
- context .log (' Function App instance is warm πππ ' );
107
+ context .log (' Function App instance is warm. ' );
108
108
};
109
109
```
110
110
@@ -158,7 +158,7 @@ import azure.functions as func
158
158
159
159
160
160
def main (warmupContext : func.Context) -> None :
161
- logging.info(' Function App instance is warm πππ ' )
161
+ logging.info(' Function App instance is warm. ' )
162
162
```
163
163
164
164
::: zone-end
You canβt perform that action at this time.
0 commit comments