| Index: remoting/webapp/me2mom/client_screen.js
|
| diff --git a/remoting/webapp/me2mom/client_screen.js b/remoting/webapp/me2mom/client_screen.js
|
| index 0090c53c2ef7e3e36cb2acb6ac948e8539f5fb01..1574e47343f06fb09f893261266771ffffe1a9f7 100644
|
| --- a/remoting/webapp/me2mom/client_screen.js
|
| +++ b/remoting/webapp/me2mom/client_screen.js
|
| @@ -388,7 +388,9 @@ function updateStatistics_() {
|
| remoting.clientSession.state != remoting.ClientSession.State.CONNECTED) {
|
| return;
|
| }
|
| - remoting.debug.updateStatistics(remoting.clientSession.stats());
|
| + var stats = remoting.clientSession.stats();
|
| + remoting.debug.updateStatistics(stats);
|
| + remoting.clientSession.logStatistics(stats);
|
| // Update the stats once per second.
|
| window.setTimeout(updateStatistics_, 1000);
|
| }
|
|
|