Compare commits

...

2 Commits

Author SHA1 Message Date
Will Sargent
5cbb8a9fb8 adds change log 2023-10-27 09:52:29 -06:00
Will Sargent
8e850067d5 changes log levels for partial parsing messages 2023-10-27 09:31:05 -06:00
2 changed files with 9 additions and 3 deletions

View File

@@ -0,0 +1,6 @@
kind: Features
body: Directs successful partial parsing logs to INFO instead of DEBUG
time: 2023-10-27T09:52:14.667432-06:00
custom:
Author: will-sargent-dbtlabs
Issue: "8935"

View File

@@ -864,7 +864,7 @@ class PartialParsingError(DebugLevel):
return f"PP exception info: {self.exc_info}"
class PartialParsingSkipParsing(DebugLevel):
class PartialParsingSkipParsing(InfoLevel):
def code(self) -> str:
return "I017"
@@ -894,7 +894,7 @@ class StateCheckVarsHash(DebugLevel):
# Skipped I025, I026, I026, I027
class PartialParsingNotEnabled(DebugLevel):
class PartialParsingNotEnabled(InfoLevel):
def code(self) -> str:
return "I028"
@@ -913,7 +913,7 @@ class ParsedFileLoadFailed(DebugLevel):
# Skipped I030-I039
class PartialParsingEnabled(DebugLevel):
class PartialParsingEnabled(InfoLevel):
def code(self) -> str:
return "I040"