From 3c6d7d9fe3d4df3f39789f65fc06a06290718a32 Mon Sep 17 00:00:00 2001 From: Daniel Larimer Date: Fri, 16 Sep 2016 17:17:06 -0400 Subject: [PATCH] remove console spam --- include/fc/fixed_string.hpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/fc/fixed_string.hpp b/include/fc/fixed_string.hpp index 766a2be..b141165 100644 --- a/include/fc/fixed_string.hpp +++ b/include/fc/fixed_string.hpp @@ -23,7 +23,6 @@ namespace fc { if( str.size() <= sizeof(data) ) memcpy( (char*)&data, str.c_str(), str.size() ); else { - wlog( "truncating string '${str}'", ("str",str) ); memcpy( (char*)&data, str.c_str(), sizeof(data) ); } } @@ -32,7 +31,6 @@ namespace fc { if( l <= sizeof(data) ) memcpy( (char*)&data, str, l ); else { - wlog( "truncating string '${str}'", ("str",str) ); memcpy( (char*)&data, str, sizeof(data) ); } } @@ -63,7 +61,6 @@ namespace fc { memcpy( (char*)&data, str.c_str(), str.size() ); } else { - wlog( "truncating string '${str}'", ("str",str) ); memcpy( (char*)&data, str.c_str(), sizeof(data) ); } return *this;