Sign in
chromium
/
external
/
webrtc-samples
/
refs/heads/adding_codec_constraints
/
.
/
src
/
js
/
common.js
blob: 6d033bf3ee009c7a25d548fd9718287be2e6e769 [
file
] [
log
] [
blame
] [
edit
]
/* exported trace */
// Logging utility function.
function
trace
(
arg
)
{
var
now
=
(
window
.
performance
.
now
()
/
1000
).
toFixed
(
3
);
console
.
log
(
now
+
': '
,
arg
);
}