diff options
author | KUDr <kudr@openttd.org> | 2006-06-04 09:13:59 +0000 |
---|---|---|
committer | KUDr <kudr@openttd.org> | 2006-06-04 09:13:59 +0000 |
commit | 9cf3badfcf4e99f20b8a751457ee76d22fc9f110 (patch) | |
tree | b0c6a4a39d1a96cd15bd05608718b8891b8a1433 /ship_cmd.c | |
parent | 877c7e34a52874eab1eb7e2a0ed15a007390d1df (diff) | |
download | openttd-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 'ship_cmd.c')
-rw-r--r-- | ship_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ship_cmd.c b/ship_cmd.c index 41a46693a..4c4171866 100644 --- a/ship_cmd.c +++ b/ship_cmd.c @@ -526,7 +526,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][NPFW] %d us - %d rounds - %d open - %d closed -- ", t, 0, _aystar_stats_open_size, _aystar_stats_closed_size); + DEBUG(yapf, 4)("[YAPF][NPFW] %d us - %d rounds - %d open - %d closed -- ", t, 0, _aystar_stats_open_size, _aystar_stats_closed_size); return ret; } |