Skip to content

Commit

Permalink
Fix improper log
Browse files Browse the repository at this point in the history
  • Loading branch information
Ranfis Francisco committed Nov 11, 2024
1 parent 1f9e02f commit 9087af0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion release/connect-streams-dr-min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions release/connect-streams-dr.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion release/connect-streams-min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion release/connect-streams.js
Original file line number Diff line number Diff line change
Expand Up @@ -15886,7 +15886,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
if (grProxyConduit instanceof connect.GRProxyIframeConduit) {
return conduit.name === grProxyConduit.activeRegionUrl;
} else {
connect.core.getLog().error('connect.isActiveConduit is called but there is no GR proxy conduit').sendInternalLogToServer();
connect.getLog().error('connect.isActiveConduit is called but there is no GR proxy conduit').sendInternalLogToServer();
return false;
}
};
Expand Down
2 changes: 1 addition & 1 deletion src/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@
if (grProxyConduit instanceof connect.GRProxyIframeConduit) {
return conduit.name === grProxyConduit.activeRegionUrl;
} else {
connect.core.getLog().error('connect.isActiveConduit is called but there is no GR proxy conduit').sendInternalLogToServer();
connect.getLog().error('connect.isActiveConduit is called but there is no GR proxy conduit').sendInternalLogToServer();
return false;
}
}
Expand Down

0 comments on commit 9087af0

Please sign in to comment.