Add debug for #71

issue-71
Vitaliy Filippov 2016-05-16 12:29:58 +03:00
parent 1bd86307c6
commit 23f966d567
1 changed files with 2 additions and 1 deletions

View File

@ -206,7 +206,8 @@ void Resource::FromRemoteFile( const Entry& remote )
// if remote is modified
if ( remote.MTime().Sec() > m_mtime.Sec() )
{
Log( "file %1% is changed in remote", path, log::verbose ) ;
Log( "file %1% is changed in remote (md5: local %2%, remote %3%; mtime: local %4%, remote %5%)",
path, m_md5, remote.MD5(), m_mtime.Sec(), remote.MTime().Sec(), log::info ) ;
m_state = remote_changed ;
}