diff options
author | madmaxoft <github@xoft.cz> | 2013-08-12 07:46:41 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-08-12 07:46:41 +0200 |
commit | 79ece8eb0db07d88e1f44239842b7ef44a33a2d4 (patch) | |
tree | 5e1d2b29b9f101557db1edf8650dc84fb73d5047 /source/Generating | |
parent | Added cWorld:QueueSaveAllChunks() function for saving chunks asynchronously. (diff) | |
parent | Merge pull request #77 from tonibm19/patch-1 (diff) | |
download | cuberite-79ece8eb0db07d88e1f44239842b7ef44a33a2d4.tar cuberite-79ece8eb0db07d88e1f44239842b7ef44a33a2d4.tar.gz cuberite-79ece8eb0db07d88e1f44239842b7ef44a33a2d4.tar.bz2 cuberite-79ece8eb0db07d88e1f44239842b7ef44a33a2d4.tar.lz cuberite-79ece8eb0db07d88e1f44239842b7ef44a33a2d4.tar.xz cuberite-79ece8eb0db07d88e1f44239842b7ef44a33a2d4.tar.zst cuberite-79ece8eb0db07d88e1f44239842b7ef44a33a2d4.zip |
Diffstat (limited to 'source/Generating')
-rw-r--r-- | source/Generating/ComposableGenerator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Generating/ComposableGenerator.cpp b/source/Generating/ComposableGenerator.cpp index fb31ec7b2..8763e2809 100644 --- a/source/Generating/ComposableGenerator.cpp +++ b/source/Generating/ComposableGenerator.cpp @@ -207,7 +207,7 @@ void cComposableGenerator::InitBiomeGen(cIniFile & a_IniFile) ); CacheSize = 4; } - LOGINFO("Using a cache for biomegen of size %d.", CacheSize); + LOGD("Using a cache for biomegen of size %d.", CacheSize); m_UnderlyingBiomeGen = m_BiomeGen; m_BiomeGen = new cBioGenCache(m_UnderlyingBiomeGen, CacheSize); } |