Skip to content

Commit

Permalink
log Java classpath on startup
Browse files Browse the repository at this point in the history
patch by Jackson Chung; reviewed by jbellis for CASSANDRA-2895

git-svn-id: https://svn.apache.org/repos/asf/cassandra/branches/cassandra-0.7@1151209 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
jbellis committed Jul 26, 2011
1 parent 14f82e9 commit 8efd368
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGES.txt
@@ -1,5 +1,6 @@
0.7.9
* don't include tmp files as sstable when create cfs (CASSANDRA-2929)
* don't include tmp files as sstable when create cfs (CASSANDRA-2929)
* log Java classpath on startup (CASSANDRA-2895)


0.7.8
Expand Down
Expand Up @@ -113,6 +113,7 @@ public abstract class AbstractCassandraDaemon implements CassandraDaemon
protected void setup() throws IOException
{
logger.info("Heap size: {}/{}", Runtime.getRuntime().totalMemory(), Runtime.getRuntime().maxMemory());
logger.info("Classpath: {}", System.getProperty("java.class.path"));
CLibrary.tryMlockall();

listenPort = DatabaseDescriptor.getRpcPort();
Expand Down

0 comments on commit 8efd368

Please sign in to comment.