File tree Expand file tree Collapse file tree
core/src/main/java/com/graphhopper/routing Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -179,6 +179,7 @@ public int getPreparationThreads() {
179179 */
180180 public void setPreparationThreads (int preparationThreads ) {
181181 this .preparationThreads = preparationThreads ;
182+ LOGGER .info ("Using {} threads for ch preparation threads" , preparationThreads );
182183 this .threadPool = java .util .concurrent .Executors .newFixedThreadPool (preparationThreads );
183184 }
184185
Original file line number Diff line number Diff line change @@ -136,6 +136,7 @@ public int getPreparationThreads() {
136136 */
137137 public void setPreparationThreads (int preparationThreads ) {
138138 this .preparationThreads = preparationThreads ;
139+ LOGGER .info ("Using {} threads for lm preparation threads" , preparationThreads );
139140 this .threadPool = java .util .concurrent .Executors .newFixedThreadPool (preparationThreads );
140141 }
141142
You can’t perform that action at this time.
0 commit comments