Skip to content

Commit

Permalink
added verbose functionality when launching server
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbeta1 authored and rht committed Feb 12, 2024
1 parent 8ef4748 commit c2fc69a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mesa_viz_tornado/ModularVisualization.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,7 @@ def __init__(
name="Mesa Model",
model_params=None,
port=None,
verbose=True
):
"""
Args:
Expand All @@ -277,7 +278,7 @@ def __init__(
model_params: A dict of model parameters
"""

self.verbose = True
self.verbose = verbose
self.max_steps = 100000

if port is not None:
Expand Down

0 comments on commit c2fc69a

Please sign in to comment.