File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ async def connect(self):
118
118
119
119
# Emit the name of the database file for positive confirmation on console.
120
120
logger .info (
121
- f"{ callsign (self )} database file is { self .__filename } revision { self .LATEST_REVISION } "
121
+ f"{ callsign (self )} database file is { self .__filename } code revision { self .LATEST_REVISION } "
122
122
)
123
123
124
124
# ----------------------------------------------------------------------------------------
@@ -148,7 +148,7 @@ async def apply_revisions(self):
148
148
if old_revision < self .LATEST_REVISION :
149
149
# Backup before applying revisions.
150
150
logger .debug (
151
- f"[BKREVL] backing up before updating to revision { self .LATEST_REVISION } "
151
+ f"[BKREVL] backing up before updating from revision { old_revision } to revision { self .LATEST_REVISION } "
152
152
)
153
153
154
154
await self .backup ()
@@ -164,8 +164,8 @@ async def apply_revisions(self):
164
164
)
165
165
else :
166
166
logger .debug (
167
- f"[BKREVL] no need to update old revision { old_revision } "
168
- f" which matches latest revision { self .LATEST_REVISION } "
167
+ f"[BKREVL] no need to update persistent revision { old_revision } "
168
+ f" which matches code revision { self .LATEST_REVISION } "
169
169
)
170
170
171
171
# ----------------------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments