Skip to content
Snippets Groups Projects
Commit 5e4de288 authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Debug config

parent 2af26b69
No related branches found
No related tags found
1 merge request!95Implements #156 expose config options
Pipeline #12911 passed
...@@ -52,6 +52,8 @@ Universe::Universe(nlohmann::json &config) : ...@@ -52,6 +52,8 @@ Universe::Universe(nlohmann::json &config) :
thread_(Universe::__start, this) { thread_(Universe::__start, this) {
_installBindings(); _installBindings();
LOG(INFO) << "SEND BUFFER SIZE = " << send_size_;
} }
Universe::~Universe() { Universe::~Universe() {
......
...@@ -40,6 +40,8 @@ Streamer::Streamer(nlohmann::json &config, Universe *net) ...@@ -40,6 +40,8 @@ Streamer::Streamer(nlohmann::json &config, Universe *net)
chunk_dim_ = value("chunking",4); chunk_dim_ = value("chunking",4);
chunk_count_ = chunk_dim_*chunk_dim_; chunk_count_ = chunk_dim_*chunk_dim_;
LOG(INFO) << "CHUNK COUNT = " << chunk_count_;
//group_.setFPS(value("fps", 20)); //group_.setFPS(value("fps", 20));
group_.setLatency(10); group_.setLatency(10);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment