diff --git a/canvas2d/Main.hs b/canvas2d/Main.hs
--- a/canvas2d/Main.hs
+++ b/canvas2d/Main.hs
@@ -35,6 +35,7 @@
     subs   = []
     events = defaultEvents
     mountPoint = Nothing -- default to body
+    logLevel = Off
 
 updateModel
   :: (Image,Image,Image)
diff --git a/compose-update/Main.hs b/compose-update/Main.hs
--- a/compose-update/Main.hs
+++ b/compose-update/Main.hs
@@ -97,6 +97,7 @@
     events = defaultEvents
     subs   = []
     mountPoint = Nothing
+    logLevel = Off
 
 viewModel :: Model -> View Action
 viewModel (x, y) =
diff --git a/file-reader/Main.hs b/file-reader/Main.hs
--- a/file-reader/Main.hs
+++ b/file-reader/Main.hs
@@ -40,6 +40,7 @@
       events = defaultEvents
       subs   = []
       view   = viewModel
+      logLevel = Off
 
 -- | Update your model
 updateModel :: Action -> Model -> Effect Action Model
diff --git a/mario/Main.hs b/mario/Main.hs
--- a/mario/Main.hs
+++ b/mario/Main.hs
@@ -66,6 +66,7 @@
              , windowCoordsSub WindowCoords
              ]
     mountPoint = Nothing
+    logLevel = Off
 
 data Model = Model
     { x :: !Double
diff --git a/mathml/Main.hs b/mathml/Main.hs
--- a/mathml/Main.hs
+++ b/mathml/Main.hs
@@ -28,6 +28,7 @@
     events = defaultEvents        -- default delegated events
     subs   = []                   -- empty subscription list
     mountPoint = Nothing          -- mount point for application (Nothing defaults to 'body')
+    logLevel = Off
 
 -- | Updates model, optionally introduces side effects
 updateModel :: Action -> Model -> Effect Action Model
diff --git a/miso-examples.cabal b/miso-examples.cabal
--- a/miso-examples.cabal
+++ b/miso-examples.cabal
@@ -1,5 +1,5 @@
 name:                miso-examples
-version:             1.5.2.0
+version:             1.7.0.0
 category:            Web, Miso, Data Structures
 author:              David M. Johnson <djohnson.m@gmail.com>
 maintainer:          David M. Johnson <djohnson.m@gmail.com>
diff --git a/router/Main.hs b/router/Main.hs
--- a/router/Main.hs
+++ b/router/Main.hs
@@ -55,6 +55,7 @@
     subs   = [ uriSub HandleURI ]
     view   = viewModel
     mountPoint = Nothing
+    logLevel = Off
 
 -- | Update your model
 updateModel :: Action -> Model -> Effect Action Model
diff --git a/svg/Main.hs b/svg/Main.hs
--- a/svg/Main.hs
+++ b/svg/Main.hs
@@ -25,6 +25,7 @@
                     M.insert (pack "touchstart") False $
                     M.insert (pack "touchmove") False defaultEvents
     subs          = [ mouseSub HandleMouse ]
+    logLevel      = Off
     mountPoint    = Nothing
 
 emptyModel :: Model
diff --git a/three/Main.hs b/three/Main.hs
--- a/three/Main.hs
+++ b/three/Main.hs
@@ -59,6 +59,7 @@
                , initialAction = Init
                , update = updateModel ref
                , mountPoint = Nothing
+               , logLevel = Off
                , ..
                }
     where
diff --git a/todo-mvc/Main.hs b/todo-mvc/Main.hs
--- a/todo-mvc/Main.hs
+++ b/todo-mvc/Main.hs
@@ -101,6 +101,7 @@
     events     = defaultEvents
     mountPoint = Nothing
     subs       = []
+    logLevel   = Off
 
 updateModel :: Msg -> Model -> Effect Msg Model
 updateModel NoOp m = noEff m
diff --git a/websocket/Main.hs b/websocket/Main.hs
--- a/websocket/Main.hs
+++ b/websocket/Main.hs
@@ -44,6 +44,7 @@
     uri = URL "wss://echo.websocket.org"
     protocols = Protocols [ ]
     mountPoint = Nothing
+    logLevel = Off
 
 updateModel :: Action -> Model -> Effect Action Model
 updateModel (HandleWebSocket (WebSocketMessage (Message m))) model
diff --git a/xhr/Main.hs b/xhr/Main.hs
--- a/xhr/Main.hs
+++ b/xhr/Main.hs
@@ -42,6 +42,7 @@
       events = defaultEvents
       subs   = []
       view   = viewModel
+      logLevel = Off
 
 -- | Update your model
 updateModel :: Action -> Model -> Effect Action Model
