Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'main' into main
  • Loading branch information
johnbley authored Feb 18, 2021
commit 27aa1460c8b0e521c3267bba50509eb21df51816
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export function sendWithHttp<ExportItem, ServiceRequest>(
res.on('data', chunk => (responseData += chunk));
res.on('end', () => {
if (res.statusCode && res.statusCode < 299) {
collector.logger.debug(`statusCode: ${res.statusCode}`, responseData);
diag.debug(`statusCode: ${res.statusCode}`, responseData);
onSuccess();
} else {
const error = new collectorTypes.CollectorExporterError(
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.