summaryrefslogtreecommitdiff
path: root/roadveh_cmd.c
diff options
context:
space:
mode:
authorKUDr <kudr@openttd.org>2006-06-04 09:13:59 +0000
committerKUDr <kudr@openttd.org>2006-06-04 09:13:59 +0000
commit9cf3badfcf4e99f20b8a751457ee76d22fc9f110 (patch)
treeb0c6a4a39d1a96cd15bd05608718b8891b8a1433 /roadveh_cmd.c
parent877c7e34a52874eab1eb7e2a0ed15a007390d1df (diff)
downloadopenttd-9cf3badfcf4e99f20b8a751457ee76d22fc9f110.tar.xz
(svn r5093) -CodeChange: [YAPF] min. debug level changed from 1 to 3 and 4 for frequent debug messages (performance stats)
Diffstat (limited to 'roadveh_cmd.c')
-rw-r--r--roadveh_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/roadveh_cmd.c b/roadveh_cmd.c
index ced66d007..ae70fc41d 100644
--- a/roadveh_cmd.c
+++ b/roadveh_cmd.c
@@ -993,7 +993,7 @@ static inline NPFFoundTargetData PerfNPFRouteToStationOrTile(TileIndex tile, Tra
void* perf = NpfBeginInterval();
NPFFoundTargetData ret = NPFRouteToStationOrTile(tile, trackdir, target, type, owner, railtypes);
int t = NpfEndInterval(perf);
- DEBUG(yapf, 1)("[YAPF][NPFR] %d us - %d rounds - %d open - %d closed -- ", t, 0, _aystar_stats_open_size, _aystar_stats_closed_size);
+ DEBUG(yapf, 4)("[YAPF][NPFR] %d us - %d rounds - %d open - %d closed -- ", t, 0, _aystar_stats_open_size, _aystar_stats_closed_size);
return ret;
}