Skip to content

Commit

Permalink
test: modified log levels in functional tests to reduce noise in logs
Browse files Browse the repository at this point in the history
  • Loading branch information
gkc committed May 22, 2024
1 parent 16eb1ae commit e8233db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import 'onboarding_service_impl_override.dart';
final String atKeysFilePath = '${Platform.environment['HOME']}/.atsign/keys';
Map<String, bool> keysCreatedMap = {};
void main() {
AtSignLogger.root_level = 'INFO';
AtSignLogger.root_level = 'WARNING';
// These group of tests run on docker container with only cram key available on secondary
// Perform cram auth and update keys manually.
Future<void> _createKeys(String atSign) async {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import 'onboarding_service_impl_override.dart';

/// Usage: dart main.dart <cram_secret>
void main() {
AtSignLogger.root_level = 'INFO';
AtSignLogger.root_level = 'WARNING';
var logger = AtSignLogger('OnboardSecureElement');

final atSign = '@egcreditbureau🛠'.trim();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var selfEncryptionKey;
final logger = AtSignLogger('OnboardingEnrollmentTest');

void main() {
AtSignLogger.root_level = 'info';
AtSignLogger.root_level = 'WARNING';
group('A group of tests to assert on authenticate functionality', () {
test(
'A test to verify send enroll request, approve enrollment and auth by enrollmentId',
Expand Down

0 comments on commit e8233db

Please sign in to comment.