File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/WebJobs.Script.WebHost/Controllers Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 9
9
using Microsoft . Azure . WebJobs . Script . WebHost . Models ;
10
10
using Microsoft . Azure . WebJobs . Script . WebHost . Security . Authorization . Policies ;
11
11
using Microsoft . Extensions . Logging ;
12
+ using Newtonsoft . Json ;
12
13
13
14
namespace Microsoft . Azure . WebJobs . Script . WebHost . Controllers
14
15
{
@@ -51,7 +52,7 @@ public async Task<IActionResult> Assign2([FromBody] FunctionsWorkerContainerAssi
51
52
{
52
53
_logger . LogDebug ( $ "Starting container assignment for host : { Request ? . Host } ") ;
53
54
54
- _logger . LogDebug ( $ "Worker assignment context is: { workerAssignmentContext } ") ;
55
+ _logger . LogDebug ( $ "Worker assignment context is: { JsonConvert . SerializeObject ( workerAssignmentContext ) } ") ;
55
56
56
57
return await AssignInternal ( workerAssignmentContext . AssignmentContext ) ;
57
58
}
You can’t perform that action at this time.
0 commit comments