Fix for copycat log max size setting. Turns out ^ is the bitwise exlusive or :)

Change-Id: I5a8e5e367d9fddc7441814aed91008608583aab4
diff --git a/core/store/dist/src/main/java/org/onlab/onos/store/service/impl/DatabaseManager.java b/core/store/dist/src/main/java/org/onlab/onos/store/service/impl/DatabaseManager.java
index f3cc515..31f4bf0 100644
--- a/core/store/dist/src/main/java/org/onlab/onos/store/service/impl/DatabaseManager.java
+++ b/core/store/dist/src/main/java/org/onlab/onos/store/service/impl/DatabaseManager.java
@@ -118,7 +118,7 @@
     private volatile LeaderElectEvent myLeaderEvent = null;
 
     // TODO make this configurable
-    private int maxLogSizeBytes = 128 * (1024 ^ 2);
+    private int maxLogSizeBytes = 128 * (1024 * 1024);
 
     // TODO make this configurable
     private long electionTimeoutMs = 5000; // CopyCat default: 2000