diff options
| author | Kamil Domanski <[email protected]> | 2014-05-13 21:00:16 +0200 |
|---|---|---|
| committer | Kamil Domanski <[email protected]> | 2014-05-20 14:58:21 +0200 |
| commit | 595f691d0acd871ecaba323d888a3632805c1828 (patch) | |
| tree | 027149ff464291a7e62fb5ead08302dee84cb951 /src/util.cpp | |
| parent | remove CTransaction::IsNewerThan which is never used (diff) | |
| download | discoin-595f691d0acd871ecaba323d888a3632805c1828.tar.xz discoin-595f691d0acd871ecaba323d888a3632805c1828.zip | |
remove LogException( ) which is never used
Diffstat (limited to 'src/util.cpp')
| -rw-r--r-- | src/util.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/util.cpp b/src/util.cpp index aa3adf89e..d99e6a7bf 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -885,12 +885,6 @@ static std::string FormatException(std::exception* pex, const char* pszThread) "UNKNOWN EXCEPTION \n%s in %s \n", pszModule, pszThread); } -void LogException(std::exception* pex, const char* pszThread) -{ - std::string message = FormatException(pex, pszThread); - LogPrintf("\n%s", message); -} - void PrintExceptionContinue(std::exception* pex, const char* pszThread) { std::string message = FormatException(pex, pszThread); |