Delay based logging.

BUG=none

Review-Url: https://codereview.webrtc.org/2808833002
Cr-Commit-Position: refs/heads/master@{#17641}
This commit is contained in:
philipel
2017-04-11 01:50:23 -07:00
committed by Commit bot
parent 64e739aeae
commit 10fc0e6385
6 changed files with 37 additions and 25 deletions

View File

@ -78,7 +78,7 @@ void PythonPlot::Draw() {
} else if (series_list_[i].style == DOT_GRAPH) {
printf(
"plt.plot(x%zu, y%zu, color=rgb_colors[%zu], label=\'%s\', "
"marker='.', ls=' ')\n",
"marker='o', ls=' ')\n",
i, i, i, series_list_[i].label.c_str());
} else {
printf("raise Exception(\"Unknown graph type\")\n");