File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
checkpoint/orbax/checkpoint/_src/handlers Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ def add(
53
53
)
54
54
# If both fully-qualified-name and type ref are the same then skip.
55
55
if previous_handler_type == handler_type :
56
- logging .warning (
56
+ logging .info (
57
57
'Handler "%s" already exists in the registry with associated type'
58
58
' %s. Skipping registration.' ,
59
59
handler_typestr ,
@@ -62,7 +62,7 @@ def add(
62
62
return
63
63
# If fully-qualified-name is the same but type ref has changed then
64
64
# it is okay to overwrite registry with the new type ref.
65
- logging .warning (
65
+ logging .info (
66
66
'Handler "%s" already exists in the registry with associated type'
67
67
' %s. Overwriting it as the module was recreated (likely from '
68
68
'Colab reload' ,
@@ -107,7 +107,7 @@ def register_handler_type(handler_cls):
107
107
typestr = handler_cls .typestr ()
108
108
except AttributeError :
109
109
typestr = f'{ handler_cls .__module__ } .{ handler_cls .__qualname__ } '
110
- logging .warning (
110
+ logging .info (
111
111
'Handler class %s does not have a typestr method. '
112
112
'Using the default typestr value "%s" instead.' ,
113
113
handler_cls ,
You can’t perform that action at this time.
0 commit comments