Skip to content

Commit 8167c08

Browse files
committed
Minor corrections.
1 parent 55f1ddf commit 8167c08

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/backend/backend_ga.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def send(self, message: Message):
3838
if self.backend_url.lower().startswith('http'):
3939
req = request.Request(self.backend_url, data=data)
4040
else:
41-
log.warning("Incorrect backend URL.")
41+
log.info("Incorrect backend URL.")
4242
return
4343

4444
request.urlopen(req) #nosec

src/backend/backend_ga4.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def send(self, message: dict):
4141
if self.backend_url.lower().startswith('http'):
4242
req = request.Request(self.backend_url, data=data)
4343
else:
44-
log.warning("Incorrect backend URL.")
44+
log.info("Incorrect backend URL.")
4545
return
4646

4747
request.urlopen(req) # nosec

src/utils/opt_in_checker.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,12 @@ def consent_file_base_dir():
9797
dir_to_check = Path.home()
9898

9999
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.')
101101
return None
102102

103103
consent_base_dir = os.path.expandvars(dir_to_check)
104104
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.')
106106
return None
107107

108108
return consent_base_dir
@@ -118,7 +118,7 @@ def consent_file_subdirectory():
118118
return 'Intel Corporation'
119119
elif platform in ['Linux', 'Darwin']:
120120
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.')
122122
return None
123123

124124
def consent_file(self):

0 commit comments

Comments
 (0)