Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
stevencohn committed Jan 22, 2024
1 parent 52165da commit b4c3e75
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion OneMore/Commands/Tagging/HashtagProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,12 @@ public void WriteTags(Hashtags tags)
}
catch (Exception exc)
{
logger.WriteLine($"error writing tag {tag.Tag} on {tag.PageID}", exc);
logger.WriteLine($"error writing tag {tag.Tag} on {tag.PageID}");
logger.WriteLine($"error moreID=[{tag.MoreID}]");
logger.WriteLine($"error objectID=[{tag.ObjectID}]");
logger.WriteLine($"error Snippet=[{tag.Snippet}]");
logger.WriteLine($"error lastModified=[{tag.LastModified}]");
logger.WriteLine(exc);
}
}

Expand Down
1 change: 1 addition & 0 deletions Plugins/Set-BlueBackground.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Begin

$xml = [Xml.Linq.XElement]::Load($filePath)
Write-Host "Loaded $filepath"
Write-Host 'Setting page color to #ECF3FA'

$ns = $xml.GetNamespaceOfPrefix('one')
$xml.Element($ns + 'PageSettings').Attribute('color').value = '#ECF3FA'
Expand Down

0 comments on commit b4c3e75

Please sign in to comment.