Skip to content

Commit fd3ea8d

Browse files
fix: remove debug print statement from ApiService
Remove production print() statement in ApiService.getOrgByYear() that leaked the API URL to the console. This is a code quality improvement as part of #417. Before: print("status is" + allOrg);
1 parent ef96f8f commit fd3ea8d

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

lib/services/ApiService.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ class ApiService {
3030
break;
3131
}
3232
final String allOrg = '$baseUrl$yearOrgUrl';
33-
print("status is" + allOrg);
3433
try {
3534
Response response = await Dio().get(allOrg + ".json");
3635
if (response.statusCode == 200) {

0 commit comments

Comments
 (0)