[asterisk-commits] murf: branch murf/bug6002 r106436 - /team/murf/bug6002/main/pbx.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Mar 6 15:40:10 CST 2008
Author: murf
Date: Thu Mar 6 15:40:09 2008
New Revision: 106436
URL: http://svn.digium.com/view/asterisk?view=rev&rev=106436
Log:
this kind of output looks better
Modified:
team/murf/bug6002/main/pbx.c
Modified: team/murf/bug6002/main/pbx.c
URL: http://svn.digium.com/view/asterisk/team/murf/bug6002/main/pbx.c?view=diff&rev=106436&r1=106435&r2=106436
==============================================================================
--- team/murf/bug6002/main/pbx.c (original)
+++ team/murf/bug6002/main/pbx.c Thu Mar 6 15:40:09 2008
@@ -5400,19 +5400,19 @@
ft = ast_tvdiff_us(writelocktime, begintime);
ft /= 1000000.0;
- ast_log(LOG_NOTICE,"Time to scan old dialplan and merge leftovers back into the new: %g sec\n", ft);
+ ast_log(LOG_NOTICE,"Time to scan old dialplan and merge leftovers back into the new: %8.6f sec\n", ft);
ft = ast_tvdiff_us(endlocktime, writelocktime);
ft /= 1000000.0;
- ast_log(LOG_NOTICE,"Time to restore hints and swap in new dialplan: %g sec\n", ft);
+ ast_log(LOG_NOTICE,"Time to restore hints and swap in new dialplan: %8.6f sec\n", ft);
ft = ast_tvdiff_us(enddeltime, endlocktime);
ft /= 1000000.0;
- ast_log(LOG_NOTICE,"Time to delete the old dialplan: %g sec\n", ft);
+ ast_log(LOG_NOTICE,"Time to delete the old dialplan: %8.6f sec\n", ft);
ft = ast_tvdiff_us(enddeltime, begintime);
ft /= 1000000.0;
- ast_log(LOG_NOTICE,"Total time merge_contexts_delete: %g sec\n", ft);
+ ast_log(LOG_NOTICE,"Total time merge_contexts_delete: %8.6f sec\n", ft);
return;
}
More information about the asterisk-commits
mailing list