remote prints

This commit is contained in:
Daniel Larimer 2012-09-23 19:38:42 -04:00
parent 4e42769366
commit 98675754d8
2 changed files with 2 additions and 2 deletions

View file

@ -132,7 +132,7 @@ namespace fc {
template<typename T, typename C, T(C::*p)>
void operator()( const char* name )const {
slog( "packing %s", name );
//slog( "packing %s", name );
raw::pack( s, c.*p );
}
private:

View file

@ -35,7 +35,7 @@ namespace fc {
if(isatty(fileno(stderr)))
std::cerr<<"\r"<<color;
fprintf( stderr, "%p %-15s %-15s %-5zd %-15s ", thread_ptr(), thread_name(), short_name(file_name), line_num, method_name );
fprintf( stderr, "%-15s %-15s %-5zd %-15s ", thread_name(), short_name(file_name), line_num, method_name );
//std::cerr<<thread_ptr()<< thread_name()<< short_name(file_name)<< line_num<< method_name ;
va_list args;
va_start(args,format);