Skip to content

Commit c303f1d

Browse files
committed
Fix for wrong log message
1 parent 6e10823 commit c303f1d

File tree

1 file changed

+1
-1
lines changed
  • cybersource-rest-client-netstandard/cybersource-rest-client-netstandard/generator/cybersource-csharp-template

1 file changed

+1
-1
lines changed

cybersource-rest-client-netstandard/cybersource-rest-client-netstandard/generator/cybersource-csharp-template/api.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ namespace {{packageName}}.{{apiPackage}}
379379
{
380380
logger.Debug("CALLING API \"{{operationId}}Async\" STARTED");
381381
{{#returnType}}ApiResponse<{{{returnType}}}> localVarResponse = await {{operationId}}AsyncWithHttpInfo({{#allParams}}{{paramName}}{{#hasMore}}, {{/hasMore}}{{/allParams}});
382-
logger.Debug("CALLING API \"{{operationId}}Async\" STARTED");
382+
logger.Debug("CALLING API \"{{operationId}}Async\" ENDED");
383383
return localVarResponse.Data;{{/returnType}}{{^returnType}}await {{operationId}}AsyncWithHttpInfo({{#allParams}}{{paramName}}{{#hasMore}}, {{/hasMore}}{{/allParams}});{{/returnType}}
384384

385385
}

0 commit comments

Comments
 (0)