Skip to content

Commit

Permalink
Clarify log file terminology
Browse files Browse the repository at this point in the history
Could be a little scary for users to see a message that there were "No forms found in this database" when exporting only changed items. 😄
  • Loading branch information
joyfullservice committed Feb 23, 2021
1 parent 3caf4b9 commit 0961caa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Version Control.accda.src/modules/modImportExport.bas
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Public Sub ExportSource(blnFullExport As Boolean)
lngCount = cCategory.Count(Not blnFullExport)
If lngCount = 0 Then
Log.Spacer Options.ShowDebug
Log.Add "No " & LCase(cCategory.Category) & " found in this database.", Options.ShowDebug
Log.Add IIf(blnFullExport, "No ", "No modified ") & LCase(cCategory.Category) & " found in this database.", Options.ShowDebug
Else
' Show category header and clear out any orphaned files.
Log.Spacer Options.ShowDebug
Expand Down

0 comments on commit 0961caa

Please sign in to comment.