Skip to content

Commit

Permalink
Change the default logging level from WARNING to INFO
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 668351363
  • Loading branch information
realp2us authored and copybara-github committed Oct 15, 2024
1 parent 722c8a3 commit c24a1b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sharing/flags/generated/nearby_sharing_feature_flags.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ constexpr auto kEnableTransferCancellationOptimization =
constexpr auto kEnableWebrtcMedium =
flags::Flag<bool>(kConfigPackage, "45411620", false);
// Set the logging level in Nearby Sharing SDK. The default logging level is
// WARNING. The mapping of logging level to number: INFO: 0, WARNING: 1, ERROR:
// 2, FATAL: 3, negative values are -(verbosity level).
// WARNING. The mapping of logging level to number:VERBOSE: -1, INFO: 0,
// WARNING: 1, ERROR: 2, FATAL: 3
constexpr auto kLoggingLevel =
flags::Flag<int64_t>(kConfigPackage, "45401358", 1);
flags::Flag<int64_t>(kConfigPackage, "45401358", 0);
// When true, the sender will not require confirming the ukey2 token.
constexpr auto kSenderSkipsConfirmation =
flags::Flag<bool>(kConfigPackage, "45411353", true);
Expand Down

0 comments on commit c24a1b3

Please sign in to comment.