Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Commit

Permalink
remove some verbose debugs
Browse files Browse the repository at this point in the history
  • Loading branch information
apietila committed Oct 16, 2013
1 parent c5a4599 commit 3e178bb
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/firefox/components/fathom.js
Original file line number Diff line number Diff line change
Expand Up @@ -1018,8 +1018,8 @@ FathomAPI.prototype = {
var errfile = tmpdir.clone()
errfile.append('fathom-command.' + commandid + '.err');

Logger.debug("outfile: " + outfile.path);
Logger.debug("errfile: " + errfile.path);
// Logger.debug("outfile: " + outfile.path);
// Logger.debug("errfile: " + errfile.path);

const fathomapi = this;

Expand Down Expand Up @@ -1463,7 +1463,7 @@ FathomAPI.prototype = {
getLoad: "r",
getMemInfo: "r",
//getLastKnownInterface: "r",
//getEndHostInfo: "r",
getEndHostInfo: "r",
win: "r"
}
},
Expand Down
4 changes: 4 additions & 0 deletions src/firefox/content/systemmeasurements.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,8 @@ var timerevent = {
sysutils.system.getWifiStats(saveWiFiHistory);
sysutils.system.getIfaceStats(saveNWHistory);
sysutils.system.getBrowserMemoryUsage(saveBrowserMemoryUsage);
} else {
dump("sysutils not found - no performance measurements done!");
}
sysutils = null;
}
Expand All @@ -211,6 +213,8 @@ var endhostinfo = {
var sysutils = handleObj.getHandleToFathom();
if(sysutils) {
sysutils.system.getEndHostInfo(saveEndHostHistory);
} else {
dump("sysutils not found - no endhost measurements done!");
}
sysutils = null;
// force garbage collection
Expand Down
Binary file modified src/firefox/dist/fathom.xpi
Binary file not shown.
4 changes: 2 additions & 2 deletions src/firefox/install.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<Description about="urn:mozilla:install-manifest">
<em:name>Fathom</em:name>
<em:version>0.2build742</em:version>
<em:version>0.2build</em:version>
<em:type>2</em:type>
<em:description>A Browser-based Network Measurement Platform</em:description>
<em:creator>International Computer Science Institute</em:creator>
Expand All @@ -25,7 +25,7 @@
<em:unpack>true</em:unpack>

<em:updateURL>http://fathom.icsi.berkeley.edu/downloads/update.rdf</em:updateURL>
<em:updateKey>MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCaZ4+jzpLhBjzVvL5Gji8SVN1pkNQwiCG1WwnB1RQNSIftDlJfYSPBfGDnpOtYJKWh8RuKIZ1k8oUyJWSmBGyp1TCwhDppHflAGVC+DaaN0Ax6XIn9SI9Ung/AtO5CORKiBH6Qnt/wDSm5iRsy97MSzRg32eE06COJw7z2wpNUhwIDAQAB</em:updateKey>
<em:updateKey>MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCaww+igknCDR2/kWisLU8lnxGqCr50lL1oIRJHvKokqskEtyB+p1FS5Tiq1rkCdiNb3RFU9e9PYNiLT/zqx3hMn6u+EFbpjInKgit79YTTQa+LveB1oOgkXJHYXfDE7aNB06xMGhIFzt3cu2o7VSs32bijHsjESI4AHCdKTFHODwIDAQAB</em:updateKey>

<em:contributor>Mohan Dhawan</em:contributor>
<em:contributor>Christian Kreibich</em:contributor>
Expand Down

0 comments on commit 3e178bb

Please sign in to comment.