Skip to content
This repository was archived by the owner on Jun 18, 2023. It is now read-only.

Commit 92d8bf1

Browse files
committed
Rename Binding in example tab to Message Binding and add full payload to log statement when producing messages
1 parent e6f4628 commit 92d8bf1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/channels/channel-main/channel-main.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ <h4>{{ operation.message.description }}</h4>
88
<mat-tab label="Example">
99
<div fxLayout="column">
1010
<div [hidden]="isEmptyObject(operation.message.bindings.get(protocolName))" fxLayout="column" fxLayoutGap="5px">
11-
<h4>Binding</h4>
11+
<h4>Message Binding</h4>
1212
<textarea spellcheck="false"
1313
#bindingTextArea
1414
[rows]="messageBindingExampleTextAreaLineCount"

src/app/shared/publisher.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class PublisherService {
1212
const url = Endpoints.getPublishEndpoint(protocol);
1313
const params = new HttpParams().set('topic', topic);
1414
const body = {payload, headers, bindings};
15-
console.log(`Publishing to ${url}`);
15+
console.log(`Publishing to ${url} with messageBinding ${bindings} and headers ${headers}: ${body}`);
1616
return this.http.post(url, body, { params });
1717
}
1818

0 commit comments

Comments
 (0)