Skip to content

Commit

Permalink
Fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
neelsmith committed Aug 18, 2023
1 parent 99cbc3b commit c394c7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/litgreek/lgstrcat.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function strcat(ortho::LiteraryGreekOrthography, s1::AbstractString,s2::Abstract
@debug("Strcatting $(s1) and $(s2)")
part2 = rmbreathing(s2, ortho)
s1 = elision ? elide(s1, part2, ortho) : s1
@info("strcat: After elision, s1 is ", s1)
@debug("strcat: After elision, s1 is ", s1)

if isempty(s1)
s2
Expand All @@ -23,7 +23,7 @@ function strcat(ortho::LiteraryGreekOrthography, s1::AbstractString,s2::Abstract
lg_appendtolabial(s1,part2) |> nfkc

elseif occursin(r"[τδθ]$", s1)
@info("Cat")
@debug("Cat")
lg_appendtodental(s1,part2) |> nfkc

elseif occursin(r"[κγχ]$", s1)
Expand Down Expand Up @@ -140,7 +140,7 @@ end
$(SIGNATURES)
"""
function lg_appendtodental(s1::AbstractString, s2::AbstractString)
@info("Appending dental $(s1) and $(s2)")
@debug("Appending dental $(s1) and $(s2)")

# Aspirate dental if next syllable starts with rough breathing:
if lginitialrough(s2)
Expand Down

0 comments on commit c394c7e

Please sign in to comment.