diff options
author | Darkvater <Darkvater@openttd.org> | 2006-12-26 17:36:18 +0000 |
---|---|---|
committer | Darkvater <Darkvater@openttd.org> | 2006-12-26 17:36:18 +0000 |
commit | 04628a1979f0ab8df4e78c0a57ca0d73381846be (patch) | |
tree | 8dae47833ded5c522ac7a89f69f10fc0c2530e90 /yapf | |
parent | 08d0319f7c50fba3ea11071d7a781478438cbbab (diff) | |
download | openttd-04628a1979f0ab8df4e78c0a57ca0d73381846be.tar.xz |
(svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
use in debug.h. grfmsg() is now used as a specific debug-function for grf.
Diffstat (limited to 'yapf')
-rw-r--r-- | yapf/yapf_base.hpp | 2 | ||||
-rw-r--r-- | yapf/yapf_costcache.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/yapf/yapf_base.hpp b/yapf/yapf_base.hpp index 0c7e7effe..1d0417987 100644 --- a/yapf/yapf_base.hpp +++ b/yapf/yapf_base.hpp @@ -146,7 +146,7 @@ public: float cache_hit_ratio = (float)m_stats_cache_hits / (float)(m_stats_cache_hits + m_stats_cost_calcs) * 100.0f; int cost = bDestFound ? m_pBestDestNode->m_cost : -1; int dist = bDestFound ? m_pBestDestNode->m_estimate - m_pBestDestNode->m_cost : -1; - DEBUG(yapf, 3)("[YAPF][YAPF%c]%c%4d- %d us - %d rounds - %d open - %d closed - CHR %4.1f%% - c%d(sc%d, ts%d, o%d) -- ", ttc, bDestFound ? '-' : '!', veh_idx, t, m_num_steps, m_nodes.OpenCount(), m_nodes.ClosedCount(), cache_hit_ratio, cost, dist, m_perf_cost.Get(1000000), m_perf_slope_cost.Get(1000000), m_perf_ts_cost.Get(1000000), m_perf_other_cost.Get(1000000)); + DEBUG(yapf, 3, "[YAPF%c]%c%4d- %d us - %d rounds - %d open - %d closed - CHR %4.1f%% - c%d(sc%d, ts%d, o%d) -- ", ttc, bDestFound ? '-' : '!', veh_idx, t, m_num_steps, m_nodes.OpenCount(), m_nodes.ClosedCount(), cache_hit_ratio, cost, dist, m_perf_cost.Get(1000000), m_perf_slope_cost.Get(1000000), m_perf_ts_cost.Get(1000000), m_perf_other_cost.Get(1000000)); return bDestFound; } diff --git a/yapf/yapf_costcache.hpp b/yapf/yapf_costcache.hpp index 4d1f5ea0f..c90d37302 100644 --- a/yapf/yapf_costcache.hpp +++ b/yapf/yapf_costcache.hpp @@ -155,7 +155,7 @@ protected: // some statistics if (last_date != _date) { last_date = _date; - DEBUG(yapf, 1) ("pf time today:%5d ms", _total_pf_time_us / 1000); + DEBUG(yapf, 2, "Pf time today: %5d ms", _total_pf_time_us / 1000); _total_pf_time_us = 0; } |