File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ def send(self, message: Message):
38
38
if self .backend_url .lower ().startswith ('http' ):
39
39
req = request .Request (self .backend_url , data = data )
40
40
else :
41
- log .warning ("Incorrect backend URL." )
41
+ log .info ("Incorrect backend URL." )
42
42
return
43
43
44
44
request .urlopen (req ) #nosec
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ def send(self, message: dict):
41
41
if self .backend_url .lower ().startswith ('http' ):
42
42
req = request .Request (self .backend_url , data = data )
43
43
else :
44
- log .warning ("Incorrect backend URL." )
44
+ log .info ("Incorrect backend URL." )
45
45
return
46
46
47
47
request .urlopen (req ) # nosec
Original file line number Diff line number Diff line change @@ -97,12 +97,12 @@ def consent_file_base_dir():
97
97
dir_to_check = Path .home ()
98
98
99
99
if dir_to_check is None :
100
- log .warning ('Failed to find location of the openvino_telemetry file.' )
100
+ log .info ('Failed to find location of the openvino_telemetry file.' )
101
101
return None
102
102
103
103
consent_base_dir = os .path .expandvars (dir_to_check )
104
104
if not os .path .isdir (consent_base_dir ):
105
- log .warning ('Failed to find location of the openvino_telemetry file.' )
105
+ log .info ('Failed to find location of the openvino_telemetry file.' )
106
106
return None
107
107
108
108
return consent_base_dir
@@ -118,7 +118,7 @@ def consent_file_subdirectory():
118
118
return 'Intel Corporation'
119
119
elif platform in ['Linux' , 'Darwin' ]:
120
120
return 'intel'
121
- log .warning ('Failed to find location of the openvino_telemetry file.' )
121
+ log .info ('Failed to find location of the openvino_telemetry file.' )
122
122
return None
123
123
124
124
def consent_file (self ):
You can’t perform that action at this time.
0 commit comments