Skip to content

Commit fbaac0b

Browse files
authored
Merge pull request #29270 from krasko78/29269-MissingCredentialsFilesShouldNotLogWarnings
Changed the warning about missing tokens file into an info message
2 parents 08ad525 + 3b22d00 commit fbaac0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/framework/cloud/internal/abstractcloudservice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ bool AbstractCloudService::readTokens()
130130

131131
io::path_t tokensPath = tokensFilePath();
132132
if (!fileSystem()->exists(tokensPath)) {
133-
LOGW() << "Could not find the tokens file: " << tokensPath;
133+
LOGI() << "Could not find the tokens file: " << tokensPath;
134134
return false;
135135
}
136136

0 commit comments

Comments
 (0)