Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Derrik 29 posts 98 karma points
    Mar 04, 2013 @ 20:38
    Derrik
    0

    AutoFolders in v6?

    Has anyone had luck using AutoFolders in v6? I'm trying to use it in my v6.0.2 install, but the page hangs forever when I try to create a node using the doctype specified in my autoFolders.config. If I click Cancel while the node is being created and reload my nodes, the folder structure is created and the node is there, but unpublished. 

    Any help? Thanks!

  • Koen Defrancq 14 posts 35 karma points
    Mar 14, 2013 @ 20:51
    Koen Defrancq
    0

    Same here was in an update from 6.0.1 to 6.0.2 but dont knwo if it was working in 6.0.1

    I've been upgrading gradually since 4.8.0 I think I installed autofolders in 4.8 can be 4.9 dont remember 

    Went to 6.0.1 when it was realeased, as far as I can see I wasn't affected by the bug fixed in 6.0.2 (but haven't checked very thoroughly though) upgraded to 6.0.2

    Since this is a new development on my local machine of a website with loads of content I haven't tested the admin part very well, so far not discovered any problems unitll now when creating a new page with a documenttype that uses autofolder.

    For me creating works fine the node appears I can edit and save without problem but node is not placed within its proper folder, when clicking publishthe page timesout and gives timeout error. When reloading nodes node is in correct folder and published

    Any idea where to look for logs or how i could debug this?

  • Koen Defrancq 14 posts 35 karma points
    Mar 14, 2013 @ 21:10
    Koen Defrancq
    0

    I think I found something in the tracelogs :

    2013-03-14 20:47:15,373 [5] INFO  umbraco.cms.businesslogic.web.Document - [Thread 8] New document 5255
    2013-03-14 20:48:02,151 [5] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 47] Content 'hoi' with Id '5255' has been published.
    2013-03-14 20:48:02,623 [5] INFO  umbraco.cms.businesslogic.web.Document - [Thread 47] New document 5256
    2013-03-14 20:48:02,723 [5] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 47] Content '06' with Id '5256' has been published.
    2013-03-14 20:48:02,778 [5] INFO  umbraco.cms.businesslogic.web.Document - [Thread 47] New document 5257
    2013-03-14 20:48:02,898 [5] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 47] Content '21' with Id '5257' has been published.
    2013-03-14 20:48:02,987 [5] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 47] Content 'hoi' with Id '5255' has been published.
    2013-03-14 20:48:03,555 [5] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 47] Content 'hoi' with Id '5255' has been published.

    I created document hoi (5255) with date 2013-06-21.

    The moment i publish it documents 06 and 21 are created and published so the date folders get created 

    Then it seems to go into an infinite loop publishing the original page again the last two lines get repeated continually untill timeout (almost 2 min, 2 times per second) no trace of the timeout though trace file stops with one of those lines

    It must be some error copying the node i guess will try to see the code if i find the time...

     

  • Koen Defrancq 14 posts 35 karma points
    Mar 18, 2013 @ 21:00
    Koen Defrancq
    0

    I took the source and updated it to function with v6

    I guess it got something to do with the current version using ApplicationBase

    So i changed the source to use IApplicationEventHandler everything seems to be working ok, I didnt change the rest of the code except for using ContentService for publishing moving etc.

    But i got one weird thing when creating it works fine when publishing it works fine but when only saving the content-tree collapses, while with create and publish the user gets the correct position in the content tree?

    The event handler for the save is like this, I only do the updatedocument when published (else it gives an error), the create only does the document_check part because its not published yet, so basically it does the same as the save but with create the content tree gets synced ok with save not.

    Even though the create will also move the file if needed (when trying to create in datefolder it will be moved to the correct parentfolder (this because its for an eventcalendar and i want te eventdate to be used not the createdate or so and this date is supplied only when saving or publishing, so for creating i move the node to the rootfolder defined in autofolders.config 

    I can upload complete source if anyone wants it

           private void Document_Saved(IContentService sender, SaveEventArgs saveEventArgs)
    {
    foreach (var savedEntity in saveEventArgs.SavedEntities)
    {
            if (!savedEntity.Published)
    {
    Document_Check(sender, (Content) savedEntity);
    }
    else
    {
    umbraco.library.UpdateDocumentCache(savedEntity.Id);
    }
    }
    }
  • Koen Defrancq 14 posts 35 karma points
    Mar 18, 2013 @ 23:41
    Koen Defrancq
    1

    i put the code as a zip under patches in codeplex (dll is under obj/release)

    http://autofolders.codeplex.com/SourceControl/list/patches

  • Eric Schrepel 161 posts 226 karma points
    Apr 13, 2013 @ 00:41
    Eric Schrepel
    0

    I'm having a similar issue though not with AutoFolders per se. But trying to move a node and its children (100 nodes total) from our Home page to underneath another node.folder. Right-click the node, choose Move, pick the new destination, and it goes into an endless publishing loop (when watching the log file, which I've attached the most recent output).

    After about 20 minutes I eventually closed the "Move" window. Same thing happens whether using the UI to move nodes, or using a short macro (with Document.move()) to do the same.

    Even removed the SiteMapProvider portion of web.config per another our.umbraco suggestion, but getting the same results.

    Plus the moved node/children never take the new URLs as would be suggested by moving underneath another folder, and they don't show that folder as a parent, even though the UI does display it in the right place.

    2013-04-12 15:23:30,235 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.ITree, found 27 (took 4ms)
    2013-04-12 15:23:30,752 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'SportFishing' with Id '15424' has been published.
    2013-04-12 15:23:30,851 [6] INFO  umbraco.content - [Thread 8] Loading content from disk cache...
    2013-04-12 15:23:31,746 [6] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.cms.businesslogic.macro.IMacroEngine, found 4 (took 3ms)
    2013-04-12 15:23:32,386 [6] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.interfaces.IDataType, found 80 (took 41ms)
    2013-04-12 15:23:32,401 [6] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.interfaces.ITree, found 47 (took 2ms)
    2013-04-12 15:23:32,495 [6] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.MacroEngines.IRazorDataTypeModel, found 15 (took 4ms)
    2013-04-12 15:23:33,447 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Steamboats' with Id '15425' has been published.
    2013-04-12 15:23:35,334 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Transmission' with Id '15428' has been published.
    2013-04-12 15:23:36,504 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'VernitaBarAgreement' with Id '15435' has been published.
    2013-04-12 15:23:37,721 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Waterfalls' with Id '15437' has been published.
    2013-04-12 15:23:38,985 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'WillametteRiver' with Id '15438' has been published.
    2013-04-12 15:23:40,091 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Intertie' with Id '15383' has been published.
    2013-04-12 15:23:41,259 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'MarmesRockShelter' with Id '15397' has been published.
    2013-04-12 15:23:42,332 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'FortVancouver' with Id '15365' has been published.
    2013-04-12 15:23:43,613 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'EnergyDeregulation' with Id '15353' has been published.
    2013-04-12 15:23:44,783 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ColumbiaRiverHighway' with Id '15338' has been published.
    2013-04-12 15:23:46,062 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'HudsonsBayCompany' with Id '15376' has been published.
    2013-04-12 15:23:46,951 [6] INFO  umbraco.BusinessLogic.Log - [Thread 3] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] (ExternalIndexer)Index is being optimized
    2013-04-12 15:23:47,279 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Lighthouses' with Id '15392' has been published.
    2013-04-12 15:23:48,168 [6] INFO  umbraco.BusinessLogic.Log - [Thread 15] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] (InternalIndexer)Index is being optimized
    2013-04-12 15:23:48,417 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ColumbiaRiver' with Id '15335' has been published.
    2013-04-12 15:23:49,565 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Hatcheries' with Id '15374' has been published.
    2013-04-12 15:23:50,788 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Bridges' with Id '15442' has been published.
    2013-04-12 15:23:51,974 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Windpower' with Id '15439' has been published.
    2013-04-12 15:23:53,159 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Aluminum' with Id '15313' has been published.
    2013-04-12 15:23:54,329 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ColumbiaLake' with Id '15333' has been published.
    2013-04-12 15:23:55,397 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'DirectServiceIndustries' with Id '15347' has been published.
    2013-04-12 15:23:56,592 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Gold' with Id '15367' has been published.
    2013-04-12 15:23:57,777 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Visionaries' with Id '15436' has been published.
    2013-04-12 15:23:59,088 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'CommercialFishing' with Id '15341' has been published.
    2013-04-12 15:24:00,601 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ColumbiaPlateau' with Id '15334' has been published.
    2013-04-12 15:24:01,755 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'CoastalDefense' with Id '15331' has been published.
    2013-04-12 15:24:02,925 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'DryFalls' with Id '15349' has been published.
    2013-04-12 15:24:04,158 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'BoundaryWatersTreaty' with Id '15320' has been published.
    2013-04-12 15:24:05,165 [6] INFO  umbraco.BusinessLogic.Log - [Thread 11] Log scrubbed.  Removed all items older than 2013-02-11 15:24:05
    2013-04-12 15:24:05,165 [6] INFO  Umbraco.Core.UmbracoApplicationBase - [Thread 11] Application shutdown. Reason: HostingEnvironment
    2013-04-12 15:24:05,570 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'MemalooseIsland' with Id '15401' has been published.
    2013-04-12 15:24:05,445 [7] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application starting
    2013-04-12 15:24:05,492 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Determining hash of code files on disk
    2013-04-12 15:24:05,508 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Hash determined (took 10ms)
    2013-04-12 15:24:06,459 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplicationStartupHandler, found 22 (took 947ms)
    2013-04-12 15:24:06,506 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Models.IMacroPropertyType, found 0 (took 5ms)
    2013-04-12 15:24:06,522 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.PropertyEditors.IPropertyEditorValueConverter, found 0 (took 2ms)
    2013-04-12 15:24:06,522 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Web.Mvc.SurfaceController, found 0 (took 5ms)
    2013-04-12 15:24:06,537 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IThumbnailProvider, found 3 (took 3ms)
    2013-04-12 15:24:06,537 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IImageUrlProvider, found 1 (took 9ms)
    2013-04-12 15:24:06,803 [7] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application startup complete (took 1341ms)
    2013-04-12 15:24:07,161 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplication, found 7 (took 8ms)
    2013-04-12 15:24:07,380 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'TreatyOfGhent' with Id '15430' has been published.
    2013-04-12 15:24:07,224 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.ITree, found 27 (took 4ms)
    2013-04-12 15:24:08,331 [7] INFO  umbraco.content - [Thread 8] Loading content from disk cache...
    2013-04-12 15:24:08,799 [7] INFO  umbraco.BusinessLogic.Log - [Thread 9] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] Adding examine event handlers for index providers: 3
    2013-04-12 15:24:08,893 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.cms.businesslogic.macro.IMacroEngine, found 4 (took 3ms)
    2013-04-12 15:24:09,579 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.interfaces.IDataType, found 80 (took 3ms)
    2013-04-12 15:24:09,595 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.interfaces.ITree, found 47 (took 2ms)
    2013-04-12 15:24:09,689 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.MacroEngines.IRazorDataTypeModel, found 15 (took 4ms)
    2013-04-12 15:24:10,469 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'McLoughlin' with Id '15399' has been published.
    2013-04-12 15:24:10,703 [7] WARN  umbraco.macro - [Thread 8] Error loading MacroEngine script (file: GroupsMenu.cshtml, Type: ''. Exception: Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: Cannot perform runtime binding on a null reference
       at CallSite.Target(Closure , CallSite , Object )
       at System.Dynamic.UpdateDelegates.UpdateAndExecute1[T0,TRet](CallSite site, T0 arg0)
       at ASP._Page_macroScripts_GroupsMenu_cshtml.Execute() in d:\inetpub\devclean\macroScripts\GroupsMenu.cshtml:line 10
       at System.Web.WebPages.WebPageBase.ExecutePageHierarchy()
       at System.Web.WebPages.WebPage.ExecutePageHierarchy()
       at System.Web.WebPages.WebPageBase.ExecutePageHierarchy(WebPageContext pageContext, TextWriter writer, WebPageRenderingBase startPage)
       at umbraco.MacroEngines.RazorMacroEngine.ExecuteRazor(MacroModel macro, INode currentPage)
       at umbraco.MacroEngines.RazorMacroEngine.Execute(MacroModel macro, INode currentPage)
       at umbraco.macro.loadMacroScript(MacroModel macro)
       at umbraco.macro.renderMacro(Hashtable pageElements, Int32 pageId)
    2013-04-12 15:24:13,045 [7] WARN  umbraco.macro - [Thread 8] Error loading MacroEngine script (file: program2008CommentsDraft.cshtml, Type: ''. Exception: System.Data.SqlClient.SqlException (0x80131904): Procedure or function 'spCommentsAll' expects parameter '@intYear', which was not supplied.
       at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning()
       at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
       at System.Data.SqlClient.SqlDataReader.ConsumeMetaData()
       at System.Data.SqlClient.SqlDataReader.get_MetaData()
       at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
       at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
       at System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
       at WebMatrix.Data.Database.<QueryInternal>d__0.MoveNext()
       at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
       at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
       at WebMatrix.Data.Database.Query(String commandText, Object[] parameters)
       at ASP._Page_macroScripts_program2008CommentsDraft_cshtml.Execute() in d:\inetpub\devclean\macroScripts\program2008CommentsDraft.cshtml:line 12
       at System.Web.WebPages.WebPageBase.ExecutePageHierarchy()
       at System.Web.WebPages.WebPage.ExecutePageHierarchy()
       at System.Web.WebPages.WebPageBase.ExecutePageHierarchy(WebPageContext pageContext, TextWriter writer, WebPageRenderingBase startPage)
       at umbraco.MacroEngines.RazorMacroEngine.ExecuteRazor(MacroModel macro, INode currentPage)
       at umbraco.MacroEngines.RazorMacroEngine.Execute(MacroModel macro, INode currentPage)
       at umbraco.macro.loadMacroScript(MacroModel macro)
       at umbraco.macro.renderMacro(Hashtable pageElements, Int32 pageId)
    2013-04-12 15:24:13,513 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Introduction' with Id '15384' has been published.
    2013-04-12 15:24:13,918 [7] WARN  umbraco.macro - [Thread 8] Error loading MacroEngine script (file: budget2007detail.cshtml, Type: ''. Exception: System.InvalidOperationException: Sequence contains no elements
       at System.Linq.Enumerable.First[TSource](IEnumerable`1 source)
       at ASP._Page_macroScripts_budget2007detail_cshtml.Execute() in d:\inetpub\devclean\macroScripts\budget2007detail.cshtml:line 17
       at System.Web.WebPages.WebPageBase.ExecutePageHierarchy()
       at System.Web.WebPages.WebPage.ExecutePageHierarchy()
       at System.Web.WebPages.WebPageBase.ExecutePageHierarchy(WebPageContext pageContext, TextWriter writer, WebPageRenderingBase startPage)
       at umbraco.MacroEngines.RazorMacroEngine.ExecuteRazor(MacroModel macro, INode currentPage)
       at umbraco.MacroEngines.RazorMacroEngine.Execute(MacroModel macro, INode currentPage)
       at umbraco.macro.loadMacroScript(MacroModel macro)
       at umbraco.macro.renderMacro(Hashtable pageElements, Int32 pageId)
    2013-04-12 15:24:15,806 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'LowerSnakeComp' with Id '15396' has been published.
    2013-04-12 15:24:17,350 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'FortColville' with Id '15364' has been published.
    2013-04-12 15:24:18,224 [7] WARN  umbraco.macro - [Thread 10] Error loading MacroEngine script (file: bodyClass.cshtml, Type: ''. Exception: Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: Cannot perform runtime binding on a null reference
       at CallSite.Target(Closure , CallSite , Object )
       at System.Dynamic.UpdateDelegates.UpdateAndExecute1[T0,TRet](CallSite site, T0 arg0)
       at CallSite.Target(Closure , CallSite , Object )
       at ASP._Page_macroScripts_bodyClass_cshtml.Execute() in d:\inetpub\devclean\macroScripts\bodyClass.cshtml:line 13
       at System.Web.WebPages.WebPageBase.ExecutePageHierarchy()
       at System.Web.WebPages.WebPage.ExecutePageHierarchy()
       at System.Web.WebPages.WebPageBase.ExecutePageHierarchy(WebPageContext pageContext, TextWriter writer, WebPageRenderingBase startPage)
       at umbraco.MacroEngines.RazorMacroEngine.ExecuteRazor(MacroModel macro, INode currentPage)
       at umbraco.MacroEngines.RazorMacroEngine.Execute(MacroModel macro, INode currentPage)
       at umbraco.macro.loadMacroScript(MacroModel macro)
       at umbraco.macro.renderMacro(Hashtable pageElements, Int32 pageId)
    2013-04-12 15:24:19,098 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'USArmyCorps' with Id '15433' has been published.
    2013-04-12 15:24:20,524 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'EndangeredSpeciesAct' with Id '15350' has been published.
    2013-04-12 15:24:22,459 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'IndianFishing' with Id '15379' has been published.
    2013-04-12 15:24:23,941 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Beavers' with Id '15318' has been published.
    2013-04-12 15:24:25,657 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Hydrothermal' with Id '15378' has been published.
    2013-04-12 15:24:27,965 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ColumbiaRiverGorge' with Id '15337' has been published.
    2013-04-12 15:24:29,635 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'index' with Id '15309' has been published.
    2013-04-12 15:24:29,759 [6] INFO  umbraco.BusinessLogic.Log - [Thread 9] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] (InternalIndexer)Index is being optimized
    2013-04-12 15:24:30,976 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'NorthwestPowerAct' with Id '15405' has been published.
    2013-04-12 15:24:32,240 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'WPPSS' with Id '15440' has been published.
    2013-04-12 15:24:33,457 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Jefferson' with Id '15386' has been published.
    2013-04-12 15:25:05,597 [7] INFO  umbraco.BusinessLogic.Log - [Thread 11] Log scrubbed.  Removed all items older than 2013-02-11 15:25:05
    2013-04-12 15:25:05,597 [7] INFO  Umbraco.Core.UmbracoApplicationBase - [Thread 11] Application shutdown. Reason: HostingEnvironment
    2013-04-12 15:25:06,424 [6] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application starting
    2013-04-12 15:25:06,455 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Determining hash of code files on disk
    2013-04-12 15:25:06,455 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Hash determined (took 9ms)
    2013-04-12 15:25:06,861 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplicationStartupHandler, found 22 (took 385ms)
    2013-04-12 15:25:06,892 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Models.IMacroPropertyType, found 0 (took 3ms)
    2013-04-12 15:25:06,892 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.PropertyEditors.IPropertyEditorValueConverter, found 0 (took 2ms)
    2013-04-12 15:25:06,892 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Web.Mvc.SurfaceController, found 0 (took 2ms)
    2013-04-12 15:25:06,908 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IThumbnailProvider, found 3 (took 2ms)
    2013-04-12 15:25:06,923 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IImageUrlProvider, found 1 (took 2ms)
    2013-04-12 15:25:07,064 [6] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application startup complete (took 632ms)
    2013-04-12 15:25:07,251 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplication, found 7 (took 8ms)
    2013-04-12 15:25:07,313 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.ITree, found 27 (took 4ms)
    2013-04-12 15:25:07,953 [6] INFO  umbraco.BusinessLogic.Log - [Thread 8] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] Adding examine event handlers for index providers: 3
    2013-04-12 15:25:10,557 [6] INFO  umbraco.content - [Thread 8] Loading content from disk cache...
    2013-04-12 15:25:10,974 [6] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.cms.businesslogic.macro.IMacroEngine, found 4 (took 3ms)
    2013-04-12 15:25:11,536 [6] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.interfaces.IDataType, found 80 (took 3ms)
    2013-04-12 15:25:11,551 [6] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.interfaces.ITree, found 47 (took 2ms)
    2013-04-12 15:25:11,645 [6] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.MacroEngines.IRazorDataTypeModel, found 15 (took 4ms)
    2013-04-12 15:25:36,636 [6] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.BusinessLogic.Actions.IActionHandler, found 1 (took 3ms)
    2013-04-12 15:26:05,273 [7] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application starting
    2013-04-12 15:26:05,320 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Determining hash of code files on disk
    2013-04-12 15:26:05,320 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Hash determined (took 10ms)
    2013-04-12 15:26:06,271 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplicationStartupHandler, found 22 (took 936ms)
    2013-04-12 15:26:06,302 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Models.IMacroPropertyType, found 0 (took 3ms)
    2013-04-12 15:26:06,302 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.PropertyEditors.IPropertyEditorValueConverter, found 0 (took 2ms)
    2013-04-12 15:26:06,318 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Web.Mvc.SurfaceController, found 0 (took 2ms)
    2013-04-12 15:26:06,318 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IThumbnailProvider, found 3 (took 2ms)
    2013-04-12 15:26:06,334 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IImageUrlProvider, found 1 (took 7ms)
    2013-04-12 15:26:06,474 [7] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application startup complete (took 1188ms)
    2013-04-12 15:26:06,708 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplication, found 7 (took 8ms)
    2013-04-12 15:26:06,770 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.ITree, found 27 (took 4ms)
    2013-04-12 15:26:07,207 [6] INFO  umbraco.BusinessLogic.Log - [Thread 9] Log scrubbed.  Removed all items older than 2013-02-11 15:26:07
    2013-04-12 15:26:07,207 [6] INFO  Umbraco.Core.UmbracoApplicationBase - [Thread 9] Application shutdown. Reason: HostingEnvironment
    2013-04-12 15:26:07,332 [7] INFO  umbraco.content - [Thread 8] Loading content from disk cache...
    2013-04-12 15:26:07,784 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.cms.businesslogic.macro.IMacroEngine, found 4 (took 3ms)
    2013-04-12 15:26:08,269 [7] INFO  umbraco.BusinessLogic.Log - [Thread 9] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] Adding examine event handlers for index providers: 3
    2013-04-12 15:26:08,497 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.interfaces.IDataType, found 80 (took 3ms)
    2013-04-12 15:26:08,515 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.interfaces.ITree, found 47 (took 2ms)
    2013-04-12 15:26:08,655 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.MacroEngines.IRazorDataTypeModel, found 15 (took 4ms)
    2013-04-12 15:26:14,203 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.BusinessLogic.Actions.IActionHandler, found 1 (took 3ms)
    2013-04-12 15:26:36,268 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Columbia River History' with Id '15308' has been published.
    2013-04-12 15:26:37,414 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'WPPSS' with Id '15440' has been published.
    2013-04-12 15:26:38,349 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'NorthwestPowerAct' with Id '15405' has been published.
    2013-04-12 15:26:39,408 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'index' with Id '15309' has been published.
    2013-04-12 15:26:40,560 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'ColumbiaRiverGorge' with Id '15337' has been published.
    2013-04-12 15:26:41,645 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Hydrothermal' with Id '15378' has been published.
    2013-04-12 15:26:42,635 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Beavers' with Id '15318' has been published.
    2013-04-12 15:26:43,898 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'IndianFishing' with Id '15379' has been published.
    2013-04-12 15:26:44,880 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'EndangeredSpeciesAct' with Id '15350' has been published.
    2013-04-12 15:26:46,448 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'USArmyCorps' with Id '15433' has been published.
    2013-04-12 15:26:47,413 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'FortColville' with Id '15364' has been published.
    2013-04-12 15:26:48,528 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'LowerSnakeComp' with Id '15396' has been published.
    2013-04-12 15:26:49,468 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Introduction' with Id '15384' has been published.
    2013-04-12 15:26:50,632 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'McLoughlin' with Id '15399' has been published.
    2013-04-12 15:26:51,787 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'TreatyOfGhent' with Id '15430' has been published.
    2013-04-12 15:26:52,984 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'MemalooseIsland' with Id '15401' has been published.
    2013-04-12 15:26:53,948 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'BoundaryWatersTreaty' with Id '15320' has been published.
    2013-04-12 15:26:55,218 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'DryFalls' with Id '15349' has been published.
    2013-04-12 15:26:56,182 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'CoastalDefense' with Id '15331' has been published.
    2013-04-12 15:26:56,228 [7] WARN  umbraco.macro - [Thread 9] Error loading MacroEngine script (file: News.cshtml, Type: ''. Exception: Expression expected (at index 0)
    2013-04-12 15:26:56,265 [7] WARN  umbraco.macro - [Thread 9] Error loading MacroEngine script (file: Highlights.cshtml, Type: ''. Exception: Expression expected (at index 0)
    2013-04-12 15:26:57,793 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'ColumbiaPlateau' with Id '15334' has been published.
    2013-04-12 15:26:58,743 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'CommercialFishing' with Id '15341' has been published.
    2013-04-12 15:26:59,823 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Visionaries' with Id '15436' has been published.
    2013-04-12 15:27:00,944 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Gold' with Id '15367' has been published.
    2013-04-12 15:27:01,913 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'DirectServiceIndustries' with Id '15347' has been published.
    2013-04-12 15:27:02,893 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'ColumbiaLake' with Id '15333' has been published.
    2013-04-12 15:27:04,144 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Aluminum' with Id '15313' has been published.
    2013-04-12 15:27:05,121 [7] INFO  umbraco.BusinessLogic.Log - [Thread 9] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] (InternalIndexer)Index is being optimized
    2013-04-12 15:27:05,138 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Windpower' with Id '15439' has been published.
    2013-04-12 15:27:06,125 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Bridges' with Id '15442' has been published.
    2013-04-12 15:27:06,903 [7] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application starting
    2013-04-12 15:27:06,949 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Determining hash of code files on disk
    2013-04-12 15:27:06,970 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Hash determined (took 16ms)
    2013-04-12 15:27:07,243 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Hatcheries' with Id '15374' has been published.
    2013-04-12 15:27:08,097 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplicationStartupHandler, found 22 (took 1104ms)
    2013-04-12 15:27:08,138 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Models.IMacroPropertyType, found 0 (took 4ms)
    2013-04-12 15:27:08,142 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.PropertyEditors.IPropertyEditorValueConverter, found 0 (took 2ms)
    2013-04-12 15:27:08,145 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Web.Mvc.SurfaceController, found 0 (took 2ms)
    2013-04-12 15:27:08,160 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IThumbnailProvider, found 3 (took 5ms)
    2013-04-12 15:27:08,171 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IImageUrlProvider, found 1 (took 10ms)
    2013-04-12 15:27:08,392 [7] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application startup complete (took 1478ms)
    2013-04-12 15:27:08,668 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplication, found 7 (took 9ms)
    2013-04-12 15:27:08,733 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.ITree, found 27 (took 4ms)
    2013-04-12 15:27:08,626 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'ColumbiaRiver' with Id '15335' has been published.
    2013-04-12 15:27:09,806 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Lighthouses' with Id '15392' has been published.
    2013-04-12 15:27:10,132 [7] INFO  umbraco.content - [Thread 8] Loading content from disk cache...
    2013-04-12 15:27:10,700 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.cms.businesslogic.macro.IMacroEngine, found 4 (took 3ms)
    2013-04-12 15:27:11,554 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.interfaces.IDataType, found 80 (took 3ms)
    2013-04-12 15:27:11,572 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.interfaces.ITree, found 47 (took 2ms)
    2013-04-12 15:27:11,669 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.MacroEngines.IRazorDataTypeModel, found 15 (took 4ms)
    2013-04-12 15:27:11,817 [7] INFO  umbraco.BusinessLogic.Log - [Thread 9] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] Adding examine event handlers for index providers: 3
    2013-04-12 15:27:12,403 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'HudsonsBayCompany' with Id '15376' has been published.
    2013-04-12 15:27:14,451 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'ColumbiaRiverHighway' with Id '15338' has been published.
    2013-04-12 15:27:15,449 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'EnergyDeregulation' with Id '15353' has been published.
    2013-04-12 15:27:16,509 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'FortVancouver' with Id '15365' has been published.
    2013-04-12 15:27:17,500 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'MarmesRockShelter' with Id '15397' has been published.
    2013-04-12 15:27:18,484 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Intertie' with Id '15383' has been published.
    2013-04-12 15:27:19,472 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'WillametteRiver' with Id '15438' has been published.
    2013-04-12 15:27:20,482 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Waterfalls' with Id '15437' has been published.
    2013-04-12 15:27:21,533 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'VernitaBarAgreement' with Id '15435' has been published.
    2013-04-12 15:27:22,626 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Transmission' with Id '15428' has been published.
    2013-04-12 15:27:23,681 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Steamboats' with Id '15425' has been published.
    2013-04-12 15:27:24,804 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'SportFishing' with Id '15424' has been published.
    2013-04-12 15:27:25,787 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'SnakeRiver' with Id '15422' has been published.
    2013-04-12 15:27:26,808 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Shipwrecks' with Id '15421' has been published.
    2013-04-12 15:27:27,849 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Shad' with Id '15419' has been published.
    2013-04-12 15:27:28,914 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Recreation' with Id '15412' has been published.
    2013-04-12 15:27:29,922 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'PlanningFishAndWildlife' with Id '15410' has been published.
    2013-04-12 15:27:31,058 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'PalliserExpedition' with Id '15409' has been published.
    2013-04-12 15:27:32,084 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'MitchellAct' with Id '15403' has been published.
    2013-04-12 15:27:33,126 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'MissionsAndMissionaries' with Id '15402' has been published.
    2013-04-12 15:27:33,235 [7] INFO  umbraco.BusinessLogic.Log - [Thread 14] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] (ExternalIndexer)Index is being optimized
    2013-04-12 15:27:34,164 [7] INFO  umbraco.BusinessLogic.Log - [Thread 9] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] (InternalIndexer)Index is being optimized
    2013-04-12 15:27:34,223 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Maryhill' with Id '15398' has been published.
    2013-04-12 15:27:35,254 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'LowerColumbiaFishDevPlan' with Id '15395' has been published.
    2013-04-12 15:27:36,269 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'LewisAndClark' with Id '15391' has been published.
    2013-04-12 15:27:37,408 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Irrigation' with Id '15385' has been published.
    2013-04-12 15:27:38,452 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'InternationalJointCommission' with Id '15382' has been published.
    2013-04-12 15:27:39,832 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Hanford' with Id '15372' has been published.
    2013-04-12 15:27:41,212 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Habitat' with Id '15371' has been published.
    2013-04-12 15:27:42,491 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Gray' with Id '15370' has been published.
    2013-04-12 15:27:43,790 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'FurTrade' with Id '15366' has been published.
    2013-04-12 15:27:45,019 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Floods' with Id '15362' has been published.
    2013-04-12 15:27:46,347 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'FishTransportation' with Id '15361' has been published.
    2013-04-12 15:27:47,378 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'FirstHumans' with Id '15358' has been published.
    2013-04-12 15:27:48,470 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Extinction' with Id '15357' has been published.
    2013-04-12 15:27:49,588 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'EnergyEfficiency' with Id '15354' has been published.
    2013-04-12 15:27:50,665 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'EnergyCrisis' with Id '15352' has been published.
    2013-04-12 15:27:51,745 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Energy' with Id '15351' has been published.
    2013-04-12 15:27:52,884 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'DouglasDavid' with Id '15348' has been published.
    2013-04-12 15:27:53,931 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'DamsImpacts' with Id '15346' has been published.
    2013-04-12 15:27:55,139 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Dams' with Id '15344' has been published.
    2013-04-12 15:27:56,165 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'CRITFC' with Id '15343' has been published.
    2013-04-12 15:27:57,259 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'ColumbiaWetlands' with Id '15340' has been published.
    2013-04-12 15:27:58,309 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'ColumbiaBasinProject' with Id '15332' has been published.
    2013-04-12 15:27:59,376 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'CeremonyOfTears' with Id '15329' has been published.
    2013-04-12 15:28:00,442 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'BPAHistory' with Id '15322' has been published.
    2013-04-12 15:28:01,668 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'BCHydro' with Id '15317' has been published.
    2013-04-12 15:28:02,861 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'ArrowLakes' with Id '15315' has been published.
    2013-04-12 15:28:02,906 [7] INFO  umbraco.BusinessLogic.Log - [Thread 14] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] (InternalIndexer)Index is being optimized
    2013-04-12 15:28:04,098 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'SpokaneRiver' with Id '15423' has been published.
    2013-04-12 15:28:05,254 [7] INFO  umbraco.BusinessLogic.Log - [Thread 10] Log scrubbed.  Removed all items older than 2013-02-11 15:28:05
    2013-04-12 15:28:05,257 [7] INFO  Umbraco.Core.UmbracoApplicationBase - [Thread 10] Application shutdown. Reason: HostingEnvironment
    2013-04-12 15:28:05,282 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'VancouverGeorge' with Id '15434' has been published.
    2013-04-12 15:28:06,445 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Acknowledgments' with Id '15312' has been published.
    2013-04-12 15:28:07,624 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Jefferson' with Id '15386' has been published.
    2013-04-12 15:28:07,382 [7] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application starting
    2013-04-12 15:28:07,475 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Determining hash of code files on disk
    2013-04-12 15:28:07,500 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Hash determined (took 21ms)
    2013-04-12 15:28:09,098 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Logging' with Id '15394' has been published.
    2013-04-12 15:28:08,607 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplicationStartupHandler, found 22 (took 1084ms)
    2013-04-12 15:28:08,647 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Models.IMacroPropertyType, found 0 (took 4ms)
    2013-04-12 15:28:08,652 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.PropertyEditors.IPropertyEditorValueConverter, found 0 (took 4ms)
    2013-04-12 15:28:08,656 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Web.Mvc.SurfaceController, found 0 (took 2ms)
    2013-04-12 15:28:08,668 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IThumbnailProvider, found 3 (took 3ms)
    2013-04-12 15:28:08,678 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IImageUrlProvider, found 1 (took 9ms)
    2013-04-12 15:28:08,925 [7] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application startup complete (took 1525ms)
    2013-04-12 15:28:09,193 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplication, found 7 (took 8ms)
    2013-04-12 15:28:09,251 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.ITree, found 27 (took 4ms)
    2013-04-12 15:28:10,456 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Climate' with Id '15330' has been published.
    2013-04-12 15:28:11,773 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'OregonTrail' with Id '15406' has been published.
    2013-04-12 15:28:11,256 [7] INFO  umbraco.content - [Thread 8] Loading content from disk cache...
    2013-04-12 15:28:11,866 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.cms.businesslogic.macro.IMacroEngine, found 4 (took 3ms)
    2013-04-12 15:28:12,307 [7] INFO  umbraco.BusinessLogic.Log - [Thread 9] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] Adding examine event handlers for index providers: 3
    2013-04-12 15:28:12,675 [7] INFO  Umbraco.Core.PluginManager - [Thread 9] Completed resolution of types of umbraco.interfaces.IDataType, found 80 (took 3ms)
    2013-04-12 15:28:12,693 [7] INFO  Umbraco.Core.PluginManager - [Thread 9] Completed resolution of types of umbraco.interfaces.ITree, found 47 (took 3ms)
    2013-04-12 15:28:12,795 [7] INFO  Umbraco.Core.PluginManager - [Thread 9] Completed resolution of types of umbraco.MacroEngines.IRazorDataTypeModel, found 15 (took 4ms)
    2013-04-12 15:28:14,152 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Russian' with Id '15415' has been published.
    2013-04-12 15:28:15,636 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'AnadromousFish' with Id '15314' has been published.
    2013-04-12 15:28:17,046 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Sturgeon' with Id '15426' has been published.
    2013-04-12 15:28:18,177 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'YakimaRiver' with Id '15441' has been published.
    2013-04-12 15:28:19,257 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Blackout' with Id '15319' has been published.
    2013-04-12 15:28:20,404 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Capacity' with Id '15326' has been published.
    2013-04-12 15:28:21,512 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Livestock' with Id '15393' has been published.
    2013-04-12 15:28:22,625 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'CanalFlats' with Id '15324' has been published.
    2013-04-12 15:28:23,722 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Ourigan' with Id '15407' has been published.
    2013-04-12 15:28:24,996 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'FirstSalmonCeremony' with Id '15359' has been published.
    2013-04-12 15:28:26,119 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'ThompsonDavid' with Id '15427' has been published.
    2013-04-12 15:28:27,244 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'BeaconRock' with Id '15311' has been published.
    2013-04-12 15:28:28,352 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'SalmonPastoral' with Id '15417' has been published.
    2013-04-12 15:28:29,449 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Epidemics' with Id '15355' has been published.
    2013-04-12 15:28:30,597 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Canneries' with Id '15325' has been published.
    2013-04-12 15:28:31,792 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'Megawatt' with Id '15400' has been published.
    2013-04-12 15:28:32,993 [7] INFO  umbraco.BusinessLogic.Log - [Thread 6] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] (ExternalIndexer)Index is being optimized
    2013-04-12 15:28:33,103 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 10] Content 'ComprehensiveReview' with Id '15342' has been published.
    2013-04-12 15:28:34,186 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.BusinessLogic.Actions.IActionHandler, found 1 (took 3ms)
    2013-04-12 15:28:34,776 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Columbia River History' with Id '15308' has been published.
    2013-04-12 15:28:36,071 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ComprehensiveReview' with Id '15342' has been published.
    2013-04-12 15:28:37,303 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Megawatt' with Id '15400' has been published.
    2013-04-12 15:28:38,395 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Canneries' with Id '15325' has been published.
    2013-04-12 15:28:39,752 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Epidemics' with Id '15355' has been published.
    2013-04-12 15:28:40,794 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'SalmonPastoral' with Id '15417' has been published.
    2013-04-12 15:28:41,892 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'BeaconRock' with Id '15311' has been published.
    2013-04-12 15:28:43,156 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ThompsonDavid' with Id '15427' has been published.
    2013-04-12 15:28:44,263 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'FirstSalmonCeremony' with Id '15359' has been published.
    2013-04-12 15:28:45,309 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Ourigan' with Id '15407' has been published.
    2013-04-12 15:28:46,385 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'CanalFlats' with Id '15324' has been published.
    2013-04-12 15:28:47,493 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Livestock' with Id '15393' has been published.
    2013-04-12 15:28:48,569 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Capacity' with Id '15326' has been published.
    2013-04-12 15:28:49,645 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Blackout' with Id '15319' has been published.
    2013-04-12 15:28:50,769 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'YakimaRiver' with Id '15441' has been published.
    2013-04-12 15:28:51,845 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Sturgeon' with Id '15426' has been published.
    2013-04-12 15:28:52,968 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'AnadromousFish' with Id '15314' has been published.
    2013-04-12 15:28:54,091 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Russian' with Id '15415' has been published.
    2013-04-12 15:28:55,183 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'OregonTrail' with Id '15406' has been published.
    2013-04-12 15:28:56,275 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Climate' with Id '15330' has been published.
    2013-04-12 15:28:57,399 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Logging' with Id '15394' has been published.
    2013-04-12 15:28:58,584 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Jefferson' with Id '15386' has been published.
    2013-04-12 15:28:59,676 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Acknowledgments' with Id '15312' has been published.
    2013-04-12 15:29:00,799 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'VancouverGeorge' with Id '15434' has been published.
    2013-04-12 15:29:01,876 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'SpokaneRiver' with Id '15423' has been published.
    2013-04-12 15:29:02,999 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ArrowLakes' with Id '15315' has been published.
    2013-04-12 15:29:03,873 [7] INFO  umbraco.BusinessLogic.Log - [Thread 13] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] (InternalIndexer)Index is being optimized
    2013-04-12 15:29:04,153 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'BCHydro' with Id '15317' has been published.
    2013-04-12 15:29:05,261 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'BPAHistory' with Id '15322' has been published.
    2013-04-12 15:29:06,369 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'CeremonyOfTears' with Id '15329' has been published.
    2013-04-12 15:29:07,741 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ColumbiaBasinProject' with Id '15332' has been published.
    2013-04-12 15:29:07,757 [6] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application starting
    2013-04-12 15:29:07,788 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Determining hash of code files on disk
    2013-04-12 15:29:07,804 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Hash determined (took 10ms)
    2013-04-12 15:29:08,740 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplicationStartupHandler, found 22 (took 925ms)
    2013-04-12 15:29:08,802 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Models.IMacroPropertyType, found 0 (took 6ms)
    2013-04-12 15:29:08,802 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.PropertyEditors.IPropertyEditorValueConverter, found 0 (took 5ms)
    2013-04-12 15:29:08,818 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Web.Mvc.SurfaceController, found 0 (took 5ms)
    2013-04-12 15:29:08,833 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IThumbnailProvider, found 3 (took 6ms)
    2013-04-12 15:29:08,849 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IImageUrlProvider, found 1 (took 14ms)
    2013-04-12 15:29:09,036 [6] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application startup complete (took 1278ms)
    2013-04-12 15:29:09,317 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplication, found 7 (took 8ms)
    2013-04-12 15:29:09,379 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.ITree, found 27 (took 4ms)
    2013-04-12 15:29:09,411 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ColumbiaWetlands' with Id '15340' has been published.
    2013-04-12 15:29:10,612 [6] INFO  umbraco.BusinessLogic.Log - [Thread 8] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] Adding examine event handlers for index providers: 3
    2013-04-12 15:29:10,893 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'CRITFC' with Id '15343' has been published.
    2013-04-12 15:29:12,031 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Dams' with Id '15344' has been published.
    2013-04-12 15:29:13,108 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'DamsImpacts' with Id '15346' has been published.
    2013-04-12 15:29:14,262 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'DouglasDavid' with Id '15348' has been published.
    2013-04-12 15:29:14,699 [6] INFO  umbraco.content - [Thread 8] Loading content from disk cache...
    2013-04-12 15:29:15,463 [6] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.cms.businesslogic.macro.IMacroEngine, found 4 (took 6ms)
    2013-04-12 15:29:16,228 [6] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.interfaces.IDataType, found 80 (took 3ms)
    2013-04-12 15:29:16,244 [6] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.interfaces.ITree, found 47 (took 2ms)
    2013-04-12 15:29:16,337 [6] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.MacroEngines.IRazorDataTypeModel, found 15 (took 4ms)
    2013-04-12 15:29:16,400 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Energy' with Id '15351' has been published.
    2013-04-12 15:29:18,396 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'EnergyCrisis' with Id '15352' has been published.
    2013-04-12 15:29:19,613 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'EnergyEfficiency' with Id '15354' has been published.
    2013-04-12 15:29:20,698 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Extinction' with Id '15357' has been published.
    2013-04-12 15:29:21,849 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'FirstHumans' with Id '15358' has been published.
    2013-04-12 15:29:22,988 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'FishTransportation' with Id '15361' has been published.
    2013-04-12 15:29:24,127 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Floods' with Id '15362' has been published.
    2013-04-12 15:29:25,234 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'FurTrade' with Id '15366' has been published.
    2013-04-12 15:29:26,404 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Gray' with Id '15370' has been published.
    2013-04-12 15:29:27,543 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Habitat' with Id '15371' has been published.
    2013-04-12 15:29:28,666 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Hanford' with Id '15372' has been published.
    2013-04-12 15:29:29,961 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'InternationalJointCommission' with Id '15382' has been published.
    2013-04-12 15:29:31,240 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Irrigation' with Id '15385' has been published.
    2013-04-12 15:29:32,520 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'LewisAndClark' with Id '15391' has been published.
    2013-04-12 15:29:34,111 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'LowerColumbiaFishDevPlan' with Id '15395' has been published.
    2013-04-12 15:29:36,398 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Maryhill' with Id '15398' has been published.
    2013-04-12 15:29:38,290 [7] INFO  umbraco.BusinessLogic.Log - [Thread 13] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] (ExternalIndexer)Index is being optimized
    2013-04-12 15:29:38,617 [7] INFO  umbraco.BusinessLogic.Log - [Thread 13] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] (InternalIndexer)Index is being optimized
    2013-04-12 15:29:39,007 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'MissionsAndMissionaries' with Id '15402' has been published.
    2013-04-12 15:29:40,770 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'MitchellAct' with Id '15403' has been published.
    2013-04-12 15:29:41,878 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'PalliserExpedition' with Id '15409' has been published.
    2013-04-12 15:29:42,986 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'PlanningFishAndWildlife' with Id '15410' has been published.
    2013-04-12 15:29:44,171 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Recreation' with Id '15412' has been published.
    2013-04-12 15:29:45,279 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Shad' with Id '15419' has been published.
    2013-04-12 15:29:46,527 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Shipwrecks' with Id '15421' has been published.
    2013-04-12 15:29:47,691 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'SnakeRiver' with Id '15422' has been published.
    2013-04-12 15:29:48,876 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'SportFishing' with Id '15424' has been published.
    2013-04-12 15:29:50,046 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Steamboats' with Id '15425' has been published.
    2013-04-12 15:29:51,190 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Transmission' with Id '15428' has been published.
    2013-04-12 15:29:52,493 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'VernitaBarAgreement' with Id '15435' has been published.
    2013-04-12 15:29:53,631 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Waterfalls' with Id '15437' has been published.
    2013-04-12 15:29:54,911 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'WillametteRiver' with Id '15438' has been published.
    2013-04-12 15:29:56,065 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Intertie' with Id '15383' has been published.
    2013-04-12 15:29:57,360 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'MarmesRockShelter' with Id '15397' has been published.
    2013-04-12 15:29:58,733 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'FortVancouver' with Id '15365' has been published.
    2013-04-12 15:30:00,121 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'EnergyDeregulation' with Id '15353' has been published.
    2013-04-12 15:30:01,385 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ColumbiaRiverHighway' with Id '15338' has been published.
    2013-04-12 15:30:02,709 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'HudsonsBayCompany' with Id '15376' has been published.
    2013-04-12 15:30:03,866 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Lighthouses' with Id '15392' has been published.
    2013-04-12 15:30:05,054 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ColumbiaRiver' with Id '15335' has been published.
    2013-04-12 15:30:05,498 [6] INFO  umbraco.BusinessLogic.Log - [Thread 9] Log scrubbed.  Removed all items older than 2013-02-11 15:30:05
    2013-04-12 15:30:05,501 [6] INFO  Umbraco.Core.UmbracoApplicationBase - [Thread 9] Application shutdown. Reason: HostingEnvironment
    2013-04-12 15:30:06,358 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Hatcheries' with Id '15374' has been published.
    2013-04-12 15:30:07,566 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Bridges' with Id '15442' has been published.
    2013-04-12 15:30:08,495 [7] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application starting
    2013-04-12 15:30:08,552 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Determining hash of code files on disk
    2013-04-12 15:30:08,563 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Hash determined (took 10ms)
    2013-04-12 15:30:09,704 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplicationStartupHandler, found 22 (took 1127ms)
    2013-04-12 15:30:09,757 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Models.IMacroPropertyType, found 0 (took 3ms)
    2013-04-12 15:30:09,761 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.PropertyEditors.IPropertyEditorValueConverter, found 0 (took 2ms)
    2013-04-12 15:30:09,765 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Web.Mvc.SurfaceController, found 0 (took 2ms)
    2013-04-12 15:30:09,809 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IThumbnailProvider, found 3 (took 33ms)
    2013-04-12 15:30:09,823 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IImageUrlProvider, found 1 (took 14ms)
    2013-04-12 15:30:10,236 [7] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application startup complete (took 1720ms)
    2013-04-12 15:30:08,867 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Windpower' with Id '15439' has been published.
    2013-04-12 15:30:10,064 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Aluminum' with Id '15313' has been published.
    2013-04-12 15:30:11,078 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplication, found 7 (took 8ms)
    2013-04-12 15:30:11,140 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.ITree, found 27 (took 4ms)
    2013-04-12 15:30:11,312 [7] INFO  umbraco.BusinessLogic.Log - [Thread 9] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] (InternalIndexer)Index is being optimized
    2013-04-12 15:30:11,827 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ColumbiaLake' with Id '15333' has been published.
    2013-04-12 15:30:11,998 [7] INFO  umbraco.BusinessLogic.Log - [Thread 8] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] Adding examine event handlers for index providers: 3
    2013-04-12 15:30:13,200 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'DirectServiceIndustries' with Id '15347' has been published.
    2013-04-12 15:30:13,714 [7] INFO  umbraco.content - [Thread 8] Loading content from disk cache...
    2013-04-12 15:30:14,370 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.cms.businesslogic.macro.IMacroEngine, found 4 (took 3ms)
    2013-04-12 15:30:14,962 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.interfaces.IDataType, found 80 (took 3ms)
    2013-04-12 15:30:14,994 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.interfaces.ITree, found 47 (took 2ms)
    2013-04-12 15:30:15,150 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.MacroEngines.IRazorDataTypeModel, found 15 (took 4ms)
    2013-04-12 15:30:15,696 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Gold' with Id '15367' has been published.
    2013-04-12 15:30:17,537 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Visionaries' with Id '15436' has been published.
    2013-04-12 15:30:19,003 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'CommercialFishing' with Id '15341' has been published.
    2013-04-12 15:30:20,242 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ColumbiaPlateau' with Id '15334' has been published.
    2013-04-12 15:30:21,400 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'CoastalDefense' with Id '15331' has been published.
    2013-04-12 15:30:22,664 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'DryFalls' with Id '15349' has been published.
    2013-04-12 15:30:23,865 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'BoundaryWatersTreaty' with Id '15320' has been published.
    2013-04-12 15:30:25,051 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'MemalooseIsland' with Id '15401' has been published.
    2013-04-12 15:30:26,299 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'TreatyOfGhent' with Id '15430' has been published.
    2013-04-12 15:30:27,515 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'McLoughlin' with Id '15399' has been published.
    2013-04-12 15:30:28,748 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Introduction' with Id '15384' has been published.
    2013-04-12 15:30:29,965 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'LowerSnakeComp' with Id '15396' has been published.
    2013-04-12 15:30:31,151 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'FortColville' with Id '15364' has been published.
    2013-04-12 15:30:32,616 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'USArmyCorps' with Id '15433' has been published.
    2013-04-12 15:30:33,802 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'EndangeredSpeciesAct' with Id '15350' has been published.
    2013-04-12 15:30:34,476 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.BusinessLogic.Actions.IActionHandler, found 1 (took 3ms)
    2013-04-12 15:30:35,032 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Columbia River History' with Id '15308' has been published.
    2013-04-12 15:30:36,265 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'EndangeredSpeciesAct' with Id '15350' has been published.
    2013-04-12 15:30:37,684 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'USArmyCorps' with Id '15433' has been published.
    2013-04-12 15:30:38,761 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'FortColville' with Id '15364' has been published.
    2013-04-12 15:30:39,790 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'LowerSnakeComp' with Id '15396' has been published.
    2013-04-12 15:30:41,462 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Introduction' with Id '15384' has been published.
    2013-04-12 15:30:43,181 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'McLoughlin' with Id '15399' has been published.
    2013-04-12 15:30:44,304 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'TreatyOfGhent' with Id '15430' has been published.
    2013-04-12 15:30:45,427 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'MemalooseIsland' with Id '15401' has been published.
    2013-04-12 15:30:47,767 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'BoundaryWatersTreaty' with Id '15320' has been published.
    2013-04-12 15:30:50,512 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'DryFalls' with Id '15349' has been published.
    2013-04-12 15:30:51,480 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'CoastalDefense' with Id '15331' has been published.
    2013-04-12 15:30:52,624 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ColumbiaPlateau' with Id '15334' has been published.
    2013-04-12 15:30:53,754 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'CommercialFishing' with Id '15341' has been published.
    2013-04-12 15:30:55,073 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Visionaries' with Id '15436' has been published.
    2013-04-12 15:30:56,228 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Gold' with Id '15367' has been published.
    2013-04-12 15:30:57,320 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'DirectServiceIndustries' with Id '15347' has been published.
    2013-04-12 15:30:58,443 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ColumbiaLake' with Id '15333' has been published.
    2013-04-12 15:30:59,519 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Aluminum' with Id '15313' has been published.
    2013-04-12 15:31:00,643 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Windpower' with Id '15439' has been published.
    2013-04-12 15:31:01,779 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Bridges' with Id '15442' has been published.
    2013-04-12 15:31:03,257 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Hatcheries' with Id '15374' has been published.
    2013-04-12 15:31:04,459 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ColumbiaRiver' with Id '15335' has been published.
    2013-04-12 15:31:05,660 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Lighthouses' with Id '15392' has been published.
    2013-04-12 15:31:06,814 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'HudsonsBayCompany' with Id '15376' has been published.
    2013-04-12 15:31:08,015 [7] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application starting
    2013-04-12 15:31:08,047 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Determining hash of code files on disk
    2013-04-12 15:31:08,062 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Hash determined (took 9ms)
    2013-04-12 15:31:08,265 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ColumbiaRiverHighway' with Id '15338' has been published.
    2013-04-12 15:31:08,577 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplicationStartupHandler, found 22 (took 503ms)
    2013-04-12 15:31:08,702 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Models.IMacroPropertyType, found 0 (took 4ms)
    2013-04-12 15:31:08,717 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.PropertyEditors.IPropertyEditorValueConverter, found 0 (took 3ms)
    2013-04-12 15:31:08,733 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Web.Mvc.SurfaceController, found 0 (took 18ms)
    2013-04-12 15:31:08,780 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IThumbnailProvider, found 3 (took 3ms)
    2013-04-12 15:31:08,827 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IImageUrlProvider, found 1 (took 55ms)
    2013-04-12 15:31:09,295 [7] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application startup complete (took 1270ms)
    2013-04-12 15:31:09,544 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplication, found 7 (took 8ms)
    2013-04-12 15:31:09,607 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.ITree, found 27 (took 4ms)
    2013-04-12 15:31:10,106 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'EnergyDeregulation' with Id '15353' has been published.
    2013-04-12 15:31:10,465 [7] INFO  umbraco.BusinessLogic.Log - [Thread 8] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] Adding examine event handlers for index providers: 3
    2013-04-12 15:31:10,511 [7] INFO  umbraco.content - [Thread 8] Loading content from disk cache...
    2013-04-12 15:31:11,151 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.cms.businesslogic.macro.IMacroEngine, found 4 (took 3ms)
    2013-04-12 15:31:12,040 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.interfaces.IDataType, found 80 (took 3ms)
    2013-04-12 15:31:12,071 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.interfaces.ITree, found 47 (took 2ms)
    2013-04-12 15:31:12,165 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.MacroEngines.IRazorDataTypeModel, found 15 (took 4ms)
    2013-04-12 15:31:12,337 [7] INFO  umbraco.BusinessLogic.Log - [Thread 13] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] (InternalIndexer)Index is being optimized
    2013-04-12 15:31:12,851 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'FortVancouver' with Id '15365' has been published.
    2013-04-12 15:31:15,004 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'MarmesRockShelter' with Id '15397' has been published.
    2013-04-12 15:31:16,221 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Intertie' with Id '15383' has been published.
    2013-04-12 15:31:17,391 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'WillametteRiver' with Id '15438' has been published.
    2013-04-12 15:31:18,530 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Waterfalls' with Id '15437' has been published.
    2013-04-12 15:31:19,653 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'VernitaBarAgreement' with Id '15435' has been published.
    2013-04-12 15:31:20,808 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Transmission' with Id '15428' has been published.
    2013-04-12 15:31:22,061 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Steamboats' with Id '15425' has been published.
    2013-04-12 15:31:23,356 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'SportFishing' with Id '15424' has been published.
    2013-04-12 15:31:24,557 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'SnakeRiver' with Id '15422' has been published.
    2013-04-12 15:31:25,680 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Shipwrecks' with Id '15421' has been published.
    2013-04-12 15:31:26,819 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Shad' with Id '15419' has been published.
    2013-04-12 15:31:27,958 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Recreation' with Id '15412' has been published.
    2013-04-12 15:31:29,065 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'PlanningFishAndWildlife' with Id '15410' has been published.
    2013-04-12 15:31:30,407 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'PalliserExpedition' with Id '15409' has been published.
    2013-04-12 15:31:31,438 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'MitchellAct' with Id '15403' has been published.
    2013-04-12 15:31:32,617 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'MissionsAndMissionaries' with Id '15402' has been published.
    2013-04-12 15:31:33,802 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Maryhill' with Id '15398' has been published.
    2013-04-12 15:31:34,957 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'LowerColumbiaFishDevPlan' with Id '15395' has been published.
    2013-04-12 15:31:36,131 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'LewisAndClark' with Id '15391' has been published.
    2013-04-12 15:31:37,325 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Irrigation' with Id '15385' has been published.
    2013-04-12 15:31:38,495 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'InternationalJointCommission' with Id '15382' has been published.
    2013-04-12 15:31:39,899 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Hanford' with Id '15372' has been published.
    2013-04-12 15:31:41,225 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Habitat' with Id '15371' has been published.
    2013-04-12 15:31:41,803 [7] INFO  umbraco.BusinessLogic.Log - [Thread 15] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] (ExternalIndexer)Index is being optimized
    2013-04-12 15:31:42,442 [7] INFO  umbraco.BusinessLogic.Log - [Thread 9] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] (InternalIndexer)Index is being optimized
    2013-04-12 15:31:42,489 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Gray' with Id '15370' has been published.
    2013-04-12 15:31:43,675 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'FurTrade' with Id '15366' has been published.
    2013-04-12 15:31:44,938 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Floods' with Id '15362' has been published.
    2013-04-12 15:31:46,124 [7] WARN  umbraco.macro - [Thread 8] Error loading MacroEngine script (file: GroupsMenu.cshtml, Type: ''. Exception: Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: Cannot perform runtime binding on a null reference
       at CallSite.Target(Closure , CallSite , Object )
       at System.Dynamic.UpdateDelegates.UpdateAndExecute1[T0,TRet](CallSite site, T0 arg0)
       at ASP._Page_macroScripts_GroupsMenu_cshtml.Execute() in d:\inetpub\devclean\macroScripts\GroupsMenu.cshtml:line 10
       at System.Web.WebPages.WebPageBase.ExecutePageHierarchy()
       at System.Web.WebPages.WebPage.ExecutePageHierarchy()
       at System.Web.WebPages.WebPageBase.ExecutePageHierarchy(WebPageContext pageContext, TextWriter writer, WebPageRenderingBase startPage)
       at umbraco.MacroEngines.RazorMacroEngine.ExecuteRazor(MacroModel macro, INode currentPage)
       at umbraco.MacroEngines.RazorMacroEngine.Execute(MacroModel macro, INode currentPage)
       at umbraco.macro.loadMacroScript(MacroModel macro)
       at umbraco.macro.renderMacro(Hashtable pageElements, Int32 pageId)
    2013-04-12 15:31:46,405 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'FishTransportation' with Id '15361' has been published.
    2013-04-12 15:31:48,386 [7] WARN  umbraco.macro - [Thread 8] Error loading MacroEngine script (file: program2008CommentsDraft.cshtml, Type: ''. Exception: System.Data.SqlClient.SqlException (0x80131904): Procedure or function 'spCommentsAll' expects parameter '@intYear', which was not supplied.
       at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning()
       at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
       at System.Data.SqlClient.SqlDataReader.ConsumeMetaData()
       at System.Data.SqlClient.SqlDataReader.get_MetaData()
       at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
       at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
       at System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
       at WebMatrix.Data.Database.<QueryInternal>d__0.MoveNext()
       at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
       at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
       at WebMatrix.Data.Database.Query(String commandText, Object[] parameters)
       at ASP._Page_macroScripts_program2008CommentsDraft_cshtml.Execute() in d:\inetpub\devclean\macroScripts\program2008CommentsDraft.cshtml:line 12
       at System.Web.WebPages.WebPageBase.ExecutePageHierarchy()
       at System.Web.WebPages.WebPage.ExecutePageHierarchy()
       at System.Web.WebPages.WebPageBase.ExecutePageHierarchy(WebPageContext pageContext, TextWriter writer, WebPageRenderingBase startPage)
       at umbraco.MacroEngines.RazorMacroEngine.ExecuteRazor(MacroModel macro, INode currentPage)
       at umbraco.MacroEngines.RazorMacroEngine.Execute(MacroModel macro, INode currentPage)
       at umbraco.macro.loadMacroScript(MacroModel macro)
       at umbraco.macro.renderMacro(Hashtable pageElements, Int32 pageId)
    2013-04-12 15:31:48,370 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'FirstHumans' with Id '15358' has been published.
    2013-04-12 15:31:48,963 [7] WARN  umbraco.macro - [Thread 8] Error loading MacroEngine script (file: budget2007detail.cshtml, Type: ''. Exception: System.InvalidOperationException: Sequence contains no elements
       at System.Linq.Enumerable.First[TSource](IEnumerable`1 source)
       at ASP._Page_macroScripts_budget2007detail_cshtml.Execute() in d:\inetpub\devclean\macroScripts\budget2007detail.cshtml:line 17
       at System.Web.WebPages.WebPageBase.ExecutePageHierarchy()
       at System.Web.WebPages.WebPage.ExecutePageHierarchy()
       at System.Web.WebPages.WebPageBase.ExecutePageHierarchy(WebPageContext pageContext, TextWriter writer, WebPageRenderingBase startPage)
       at umbraco.MacroEngines.RazorMacroEngine.ExecuteRazor(MacroModel macro, INode currentPage)
       at umbraco.MacroEngines.RazorMacroEngine.Execute(MacroModel macro, INode currentPage)
       at umbraco.macro.loadMacroScript(MacroModel macro)
       at umbraco.macro.renderMacro(Hashtable pageElements, Int32 pageId)
    2013-04-12 15:31:50,663 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Extinction' with Id '15357' has been published.
    2013-04-12 15:31:52,064 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'EnergyEfficiency' with Id '15354' has been published.
    2013-04-12 15:31:53,665 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'EnergyCrisis' with Id '15352' has been published.
    2013-04-12 15:31:55,247 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Energy' with Id '15351' has been published.
    2013-04-12 15:31:56,756 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'DouglasDavid' with Id '15348' has been published.
    2013-04-12 15:31:58,331 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'DamsImpacts' with Id '15346' has been published.
    2013-04-12 15:31:59,498 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Dams' with Id '15344' has been published.
    2013-04-12 15:32:00,836 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'CRITFC' with Id '15343' has been published.
    2013-04-12 15:32:02,299 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ColumbiaWetlands' with Id '15340' has been published.
    2013-04-12 15:32:03,500 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ColumbiaBasinProject' with Id '15332' has been published.
    2013-04-12 15:32:04,748 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'CeremonyOfTears' with Id '15329' has been published.
    2013-04-12 15:32:05,965 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'BPAHistory' with Id '15322' has been published.
    2013-04-12 15:32:07,228 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'BCHydro' with Id '15317' has been published.
    2013-04-12 15:32:07,883 [6] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application starting
    2013-04-12 15:32:07,977 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Determining hash of code files on disk
    2013-04-12 15:32:08,008 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Hash determined (took 26ms)
    2013-04-12 15:32:08,929 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ArrowLakes' with Id '15315' has been published.
    2013-04-12 15:32:08,741 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplicationStartupHandler, found 22 (took 725ms)
    2013-04-12 15:32:08,788 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Models.IMacroPropertyType, found 0 (took 8ms)
    2013-04-12 15:32:08,788 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.PropertyEditors.IPropertyEditorValueConverter, found 0 (took 2ms)
    2013-04-12 15:32:08,788 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Web.Mvc.SurfaceController, found 0 (took 2ms)
    2013-04-12 15:32:08,804 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IThumbnailProvider, found 3 (took 3ms)
    2013-04-12 15:32:08,835 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IImageUrlProvider, found 1 (took 25ms)
    2013-04-12 15:32:09,007 [6] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application startup complete (took 1117ms)
    2013-04-12 15:32:09,475 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplication, found 7 (took 7ms)
    2013-04-12 15:32:09,553 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.ITree, found 27 (took 4ms)
    2013-04-12 15:32:10,785 [6] INFO  umbraco.BusinessLogic.Log - [Thread 8] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] Adding examine event handlers for index providers: 3
    2013-04-12 15:32:10,816 [6] INFO  umbraco.content - [Thread 8] Loading content from disk cache...
    2013-04-12 15:32:10,988 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'SpokaneRiver' with Id '15423' has been published.
    2013-04-12 15:32:11,269 [6] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.cms.businesslogic.macro.IMacroEngine, found 4 (took 3ms)
    2013-04-12 15:32:11,924 [6] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.interfaces.IDataType, found 80 (took 3ms)
    2013-04-12 15:32:11,940 [6] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.interfaces.ITree, found 47 (took 2ms)
    2013-04-12 15:32:12,033 [6] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.MacroEngines.IRazorDataTypeModel, found 15 (took 4ms)
    2013-04-12 15:32:13,936 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'VancouverGeorge' with Id '15434' has been published.
    2013-04-12 15:32:15,262 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Acknowledgments' with Id '15312' has been published.
    2013-04-12 15:32:16,682 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Jefferson' with Id '15386' has been published.
    2013-04-12 15:32:18,024 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Logging' with Id '15394' has been published.
    2013-04-12 15:32:19,630 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Climate' with Id '15330' has been published.
    2013-04-12 15:32:20,850 [7] INFO  umbraco.BusinessLogic.Log - [Thread 9] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] (InternalIndexer)Index is being optimized
    2013-04-12 15:32:20,900 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'OregonTrail' with Id '15406' has been published.
    2013-04-12 15:32:22,428 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Russian' with Id '15415' has been published.
    2013-04-12 15:32:23,801 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'AnadromousFish' with Id '15314' has been published.
    2013-04-12 15:32:25,111 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Sturgeon' with Id '15426' has been published.
    2013-04-12 15:32:26,406 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'YakimaRiver' with Id '15441' has been published.
    2013-04-12 15:32:27,685 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Blackout' with Id '15319' has been published.
    2013-04-12 15:32:28,980 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Capacity' with Id '15326' has been published.
    2013-04-12 15:32:30,275 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Livestock' with Id '15393' has been published.
    2013-04-12 15:32:31,430 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'CanalFlats' with Id '15324' has been published.
    2013-04-12 15:32:32,562 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Ourigan' with Id '15407' has been published.
    2013-04-12 15:32:33,951 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'FirstSalmonCeremony' with Id '15359' has been published.
    2013-04-12 15:32:34,809 [6] INFO  Umbraco.Core.PluginManager - [Thread 9] Completed resolution of types of umbraco.BusinessLogic.Actions.IActionHandler, found 1 (took 3ms)
    2013-04-12 15:32:35,292 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Columbia River History' with Id '15308' has been published.
    2013-04-12 15:32:36,478 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'FirstSalmonCeremony' with Id '15359' has been published.
    2013-04-12 15:32:37,851 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Ourigan' with Id '15407' has been published.
    2013-04-12 15:32:38,830 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'CanalFlats' with Id '15324' has been published.
    2013-04-12 15:32:40,048 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Livestock' with Id '15393' has been published.
    2013-04-12 15:32:41,065 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Capacity' with Id '15326' has been published.
    2013-04-12 15:32:42,067 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Blackout' with Id '15319' has been published.
    2013-04-12 15:32:43,477 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'YakimaRiver' with Id '15441' has been published.
    2013-04-12 15:32:44,772 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Sturgeon' with Id '15426' has been published.
    2013-04-12 15:32:45,732 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'AnadromousFish' with Id '15314' has been published.
    2013-04-12 15:32:46,886 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Russian' with Id '15415' has been published.
    2013-04-12 15:32:47,978 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'OregonTrail' with Id '15406' has been published.
    2013-04-12 15:32:49,070 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Climate' with Id '15330' has been published.
    2013-04-12 15:32:50,536 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Logging' with Id '15394' has been published.
    2013-04-12 15:32:51,659 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Jefferson' with Id '15386' has been published.
    2013-04-12 15:32:52,720 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Acknowledgments' with Id '15312' has been published.
    2013-04-12 15:32:53,828 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'VancouverGeorge' with Id '15434' has been published.
    2013-04-12 15:32:54,904 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'SpokaneRiver' with Id '15423' has been published.
    2013-04-12 15:32:56,152 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'ArrowLakes' with Id '15315' has been published.
    2013-04-12 15:32:57,462 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'BCHydro' with Id '15317' has been published.
    2013-04-12 15:32:58,539 [7] INFO  umbraco.BusinessLogic.Log - [Thread 9] Log scrubbed.  Removed all items older than 2013-02-11 15:32:58
    2013-04-12 15:32:58,539 [7] INFO  Umbraco.Core.UmbracoApplicationBase - [Thread 9] Application shutdown. Reason: HostingEnvironment
    2013-04-12 15:32:58,601 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'BPAHistory' with Id '15322' has been published.
    2013-04-12 15:32:59,709 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'CeremonyOfTears' with Id '15329' has been published.
    2013-04-12 15:33:01,004 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'ColumbiaBasinProject' with Id '15332' has been published.
    2013-04-12 15:33:02,065 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'ColumbiaWetlands' with Id '15340' has been published.
    2013-04-12 15:33:03,196 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'CRITFC' with Id '15343' has been published.
    2013-04-12 15:33:04,273 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Dams' with Id '15344' has been published.
    2013-04-12 15:33:05,240 [6] INFO  umbraco.BusinessLogic.Log - [Thread 11] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] (InternalIndexer)Index is being optimized
    2013-04-12 15:33:05,427 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'DamsImpacts' with Id '15346' has been published.
    2013-04-12 15:33:06,566 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'DouglasDavid' with Id '15348' has been published.
    2013-04-12 15:33:08,001 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Energy' with Id '15351' has been published.
    2013-04-12 15:33:07,954 [6] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application starting
    2013-04-12 15:33:08,001 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Determining hash of code files on disk
    2013-04-12 15:33:08,017 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Hash determined (took 10ms)
    2013-04-12 15:33:08,906 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplicationStartupHandler, found 22 (took 886ms)
    2013-04-12 15:33:08,953 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Models.IMacroPropertyType, found 0 (took 3ms)
    2013-04-12 15:33:08,953 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.PropertyEditors.IPropertyEditorValueConverter, found 0 (took 2ms)
    2013-04-12 15:33:08,968 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Web.Mvc.SurfaceController, found 0 (took 2ms)
    2013-04-12 15:33:08,968 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IThumbnailProvider, found 3 (took 2ms)
    2013-04-12 15:33:08,984 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IImageUrlProvider, found 1 (took 11ms)
    2013-04-12 15:33:09,202 [6] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application startup complete (took 1224ms)
    2013-04-12 15:33:09,483 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplication, found 7 (took 7ms)
    2013-04-12 15:33:09,545 [6] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.ITree, found 27 (took 4ms)
    2013-04-12 15:33:09,748 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'EnergyCrisis' with Id '15352' has been published.
    2013-04-12 15:33:10,793 [6] INFO  umbraco.BusinessLogic.Log - [Thread 8] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] Adding examine event handlers for index providers: 3
    2013-04-12 15:33:11,183 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'EnergyEfficiency' with Id '15354' has been published.
    2013-04-12 15:33:12,189 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Extinction' with Id '15357' has been published.
    2013-04-12 15:33:13,314 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'FirstHumans' with Id '15358' has been published.
    2013-04-12 15:33:14,390 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'FishTransportation' with Id '15361' has been published.
    2013-04-12 15:33:15,498 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Floods' with Id '15362' has been published.
    2013-04-12 15:33:16,637 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'FurTrade' with Id '15366' has been published.
    2013-04-12 15:33:17,791 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Gray' with Id '15370' has been published.
    2013-04-12 15:33:18,930 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Habitat' with Id '15371' has been published.
    2013-04-12 15:33:19,694 [6] INFO  umbraco.content - [Thread 9] Loading content from disk cache...
    2013-04-12 15:33:20,287 [6] INFO  Umbraco.Core.PluginManager - [Thread 9] Completed resolution of types of umbraco.cms.businesslogic.macro.IMacroEngine, found 4 (took 3ms)
    2013-04-12 15:33:20,911 [6] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.interfaces.IDataType, found 80 (took 4ms)
    2013-04-12 15:33:20,927 [6] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.interfaces.ITree, found 47 (took 2ms)
    2013-04-12 15:33:21,051 [6] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.MacroEngines.IRazorDataTypeModel, found 15 (took 4ms)
    2013-04-12 15:33:21,207 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Hanford' with Id '15372' has been published.
    2013-04-12 15:33:22,908 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'InternationalJointCommission' with Id '15382' has been published.
    2013-04-12 15:33:24,268 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Irrigation' with Id '15385' has been published.
    2013-04-12 15:33:25,298 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'LewisAndClark' with Id '15391' has been published.
    2013-04-12 15:33:26,312 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'LowerColumbiaFishDevPlan' with Id '15395' has been published.
    2013-04-12 15:33:27,482 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Maryhill' with Id '15398' has been published.
    2013-04-12 15:33:28,605 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'MissionsAndMissionaries' with Id '15402' has been published.
    2013-04-12 15:33:29,775 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'MitchellAct' with Id '15403' has been published.
    2013-04-12 15:33:30,882 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'PalliserExpedition' with Id '15409' has been published.
    2013-04-12 15:33:31,949 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'PlanningFishAndWildlife' with Id '15410' has been published.
    2013-04-12 15:33:33,131 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Recreation' with Id '15412' has been published.
    2013-04-12 15:33:34,207 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Shad' with Id '15419' has been published.
    2013-04-12 15:33:35,159 [6] INFO  umbraco.BusinessLogic.Log - [Thread 7] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] (ExternalIndexer)Index is being optimized
    2013-04-12 15:33:35,408 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Shipwrecks' with Id '15421' has been published.
    2013-04-12 15:33:36,282 [6] INFO  umbraco.BusinessLogic.Log - [Thread 11] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] (InternalIndexer)Index is being optimized
    2013-04-12 15:33:36,547 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'SnakeRiver' with Id '15422' has been published.
    2013-04-12 15:33:37,639 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'SportFishing' with Id '15424' has been published.
    2013-04-12 15:33:38,840 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Steamboats' with Id '15425' has been published.
    2013-04-12 15:33:40,244 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Transmission' with Id '15428' has been published.
    2013-04-12 15:33:41,383 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'VernitaBarAgreement' with Id '15435' has been published.
    2013-04-12 15:33:42,482 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Waterfalls' with Id '15437' has been published.
    2013-04-12 15:33:43,624 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'WillametteRiver' with Id '15438' has been published.
    2013-04-12 15:33:44,762 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Intertie' with Id '15383' has been published.
    2013-04-12 15:33:45,886 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'MarmesRockShelter' with Id '15397' has been published.
    2013-04-12 15:33:46,960 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'FortVancouver' with Id '15365' has been published.
    2013-04-12 15:33:48,148 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'EnergyDeregulation' with Id '15353' has been published.
    2013-04-12 15:33:49,302 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'ColumbiaRiverHighway' with Id '15338' has been published.
    2013-04-12 15:33:50,457 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'HudsonsBayCompany' with Id '15376' has been published.
    2013-04-12 15:33:51,705 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Lighthouses' with Id '15392' has been published.
    2013-04-12 15:33:52,812 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'ColumbiaRiver' with Id '15335' has been published.
    2013-04-12 15:33:54,060 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Hatcheries' with Id '15374' has been published.
    2013-04-12 15:33:55,261 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Bridges' with Id '15442' has been published.
    2013-04-12 15:33:56,509 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Windpower' with Id '15439' has been published.
    2013-04-12 15:33:57,711 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Aluminum' with Id '15313' has been published.
    2013-04-12 15:33:58,912 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'ColumbiaLake' with Id '15333' has been published.
    2013-04-12 15:34:00,082 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'DirectServiceIndustries' with Id '15347' has been published.
    2013-04-12 15:34:01,236 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Gold' with Id '15367' has been published.
    2013-04-12 15:34:02,344 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Visionaries' with Id '15436' has been published.
    2013-04-12 15:34:03,980 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'CommercialFishing' with Id '15341' has been published.
    2013-04-12 15:34:06,398 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'ColumbiaPlateau' with Id '15334' has been published.
    2013-04-12 15:34:08,800 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'CoastalDefense' with Id '15331' has been published.
    2013-04-12 15:34:09,284 [7] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application starting
    2013-04-12 15:34:09,393 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Determining hash of code files on disk
    2013-04-12 15:34:09,393 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Hash determined (took 9ms)
    2013-04-12 15:34:10,157 [6] INFO  umbraco.BusinessLogic.Log - [Thread 16] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] (InternalIndexer)Index is being optimized
    2013-04-12 15:34:10,157 [6] INFO  umbraco.BusinessLogic.Log - [Thread 10] Log scrubbed.  Removed all items older than 2013-02-11 15:34:10
    2013-04-12 15:34:10,157 [6] INFO  Umbraco.Core.UmbracoApplicationBase - [Thread 10] Application shutdown. Reason: HostingEnvironment
    2013-04-12 15:34:10,126 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplicationStartupHandler, found 22 (took 700ms)
    2013-04-12 15:34:10,235 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Models.IMacroPropertyType, found 0 (took 4ms)
    2013-04-12 15:34:10,235 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.PropertyEditors.IPropertyEditorValueConverter, found 0 (took 2ms)
    2013-04-12 15:34:10,251 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Web.Mvc.SurfaceController, found 0 (took 2ms)
    2013-04-12 15:34:10,251 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IThumbnailProvider, found 3 (took 2ms)
    2013-04-12 15:34:10,267 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of Umbraco.Core.Media.IImageUrlProvider, found 1 (took 8ms)
    2013-04-12 15:34:10,501 [7] INFO  Umbraco.Core.CoreBootManager - [Thread 1] Umbraco application startup complete (took 1192ms)
    2013-04-12 15:34:10,859 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.IApplication, found 7 (took 8ms)
    2013-04-12 15:34:10,937 [7] INFO  Umbraco.Core.PluginManager - [Thread 1] Completed resolution of types of umbraco.interfaces.ITree, found 27 (took 4ms)
    2013-04-12 15:34:11,140 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'DryFalls' with Id '15349' has been published.
    2013-04-12 15:34:11,437 [7] INFO  umbraco.BusinessLogic.Log - [Thread 9] Redirected log call (please use Umbraco.Core.Logging.LogHelper instead of umbraco.BusinessLogic.Log) | Type: Custom | User: 0 | NodeId: -1 | Comment: [UmbracoExamine] Adding examine event handlers for index providers: 3
    2013-04-12 15:34:12,841 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'BoundaryWatersTreaty' with Id '15320' has been published.
    2013-04-12 15:34:14,104 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'MemalooseIsland' with Id '15401' has been published.
    2013-04-12 15:34:15,274 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'TreatyOfGhent' with Id '15430' has been published.
    2013-04-12 15:34:16,429 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'McLoughlin' with Id '15399' has been published.
    2013-04-12 15:34:17,614 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Introduction' with Id '15384' has been published.
    2013-04-12 15:34:18,706 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'LowerSnakeComp' with Id '15396' has been published.
    2013-04-12 15:34:19,970 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'FortColville' with Id '15364' has been published.
    2013-04-12 15:34:21,156 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'USArmyCorps' with Id '15433' has been published.
    2013-04-12 15:34:22,528 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'EndangeredSpeciesAct' with Id '15350' has been published.
    2013-04-12 15:34:23,870 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'ThompsonDavid' with Id '15427' has been published.
    2013-04-12 15:34:25,102 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'BeaconRock' with Id '15311' has been published.
    2013-04-12 15:34:26,288 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'SalmonPastoral' with Id '15417' has been published.
    2013-04-12 15:34:27,489 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Epidemics' with Id '15355' has been published.
    2013-04-12 15:34:28,647 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Canneries' with Id '15325' has been published.
    2013-04-12 15:34:29,807 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Megawatt' with Id '15400' has been published.
    2013-04-12 15:34:31,017 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'ComprehensiveReview' with Id '15342' has been published.
    2013-04-12 15:34:32,312 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'IndianFishing' with Id '15379' has been published.
    2013-04-12 15:34:33,575 [6] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 9] Content 'Beavers' with Id '15318' has been published.
    2013-04-12 15:34:34,168 [7] INFO  umbraco.content - [Thread 9] Loading content from disk cache...
    2013-04-12 15:34:34,761 [7] INFO  Umbraco.Core.PluginManager - [Thread 9] Completed resolution of types of umbraco.cms.businesslogic.macro.IMacroEngine, found 4 (took 3ms)
    2013-04-12 15:34:35,354 [7] INFO  Umbraco.Core.PluginManager - [Thread 9] Completed resolution of types of umbraco.interfaces.IDataType, found 80 (took 3ms)
    2013-04-12 15:34:35,369 [7] INFO  Umbraco.Core.PluginManager - [Thread 9] Completed resolution of types of umbraco.interfaces.ITree, found 47 (took 2ms)
    2013-04-12 15:34:35,463 [7] INFO  Umbraco.Core.PluginManager - [Thread 9] Completed resolution of types of umbraco.MacroEngines.IRazorDataTypeModel, found 15 (took 4ms)
    2013-04-12 15:34:36,056 [7] INFO  Umbraco.Core.PluginManager - [Thread 8] Completed resolution of types of umbraco.BusinessLogic.Actions.IActionHandler, found 1 (took 3ms)
    2013-04-12 15:34:37,382 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Columbia River History' with Id '15308' has been published.
    2013-04-12 15:34:38,552 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Beavers' with Id '15318' has been published.
    2013-04-12 15:34:40,049 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'IndianFishing' with Id '15379' has been published.
    2013-04-12 15:34:41,266 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ComprehensiveReview' with Id '15342' has been published.
    2013-04-12 15:34:42,421 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Megawatt' with Id '15400' has been published.
    2013-04-12 15:34:43,513 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Canneries' with Id '15325' has been published.
    2013-04-12 15:34:44,620 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'Epidemics' with Id '15355' has been published.
    2013-04-12 15:34:45,681 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'SalmonPastoral' with Id '15417' has been published.
    2013-04-12 15:34:46,661 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'BeaconRock' with Id '15311' has been published.
    2013-04-12 15:34:47,712 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'ThompsonDavid' with Id '15427' has been published.
    2013-04-12 15:34:48,761 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'EndangeredSpeciesAct' with Id '15350' has been published.
    2013-04-12 15:34:49,985 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'USArmyCorps' with Id '15433' has been published.
    2013-04-12 15:34:51,079 [7] INFO  Umbraco.Core.Publishing.PublishingStrategy - [Thread 8] Content 'FortColville' with Id '15364' has been published.
    
Please Sign in or register to post replies

Write your reply to:

Draft