본문 바로가기

console5

Python Requests 라이브러리의 로그 메시지를 비활성화하는 방법은 무엇인가요?, How do I disable log messages from the Requests library? 질문 기본적으로 Requests 파이썬 라이브러리는 다음과 같은 형식으로 로그 메시지를 콘솔에 출력합니다: Starting new HTTP connection (1): example.com http://example.com:80 "GET / HTTP/1.1" 200 606 저는 일반적으로 이러한 메시지에 관심이 없으며, 이를 비활성화하거나 Requests의 상세도를 줄이는 가장 좋은 방법은 무엇일까요? 답변 requests의 로깅 레벨을 구성하는 방법을 알아냈습니다. 이는 표준 logging 모듈을 통해 수행됩니다. 나는 메시지를 경고 이상으로만 로깅하도록 구성하기로 결정했습니다: import logging logging.getLogger("requests").setLevel(logging.WARNING.. 2023. 12. 4.
Flutter 플러터에서 콘솔 메시지를 출력하는 방법이 있나요?, Is there a way to print a console message with Flutter? 질문 I'm debugging an app, but I need to know some values in the fly, I was wondering if there's a way to print a message in console like console.log using Javascript. I appreciate the help. 앱을 디버깅하고 있지만, 실시간으로 일부 값을 알아야 합니다. Javascript를 사용하여 console.log와 같이 콘솔에 메시지를 출력하는 방법이 있는지 궁금합니다. 도움을 감사히 받겠습니다. 답변 print()은 아마도 당신이 찾고 있는 것입니다. 여기에 플러터 디버깅에 대한 추가 정보가 있습니다. 2023. 8. 23.
Flutter 플러터 종속성을 자동으로 업그레이드하는 방법, How to automatically upgrade Flutter dependencies 질문 내 Flutter 프로젝트에는 flutter_dotenv 버전 ^2.0.1의 종속성이 있으며, 새 버전 ^2.0.2로 자동으로 업그레이드하려고 합니다. 다음 명령을 실행하여 업그레이드합니다: flutter pub upgrade 참고: 패키지만 업그레이드하기 pubspec.yaml 파일에 나열된 모든 종속성의 최신 호환 버전으로 업데이트하려면 업그레이드 명령을 사용하세요: flutter pub upgrade 그러나 아무 일도 일어나지 않습니다. pubspec.yaml 파일이 변경되지 않으며, 콘솔 출력에 새 버전에 대한 언급이 없습니다 (이것만으로 충분할 것입니다). 내 pubspec.yaml 파일은 다음과 같습니다: environment: sdk: ">=2.1.0 2023. 8. 14.
Flutter 처리되지 않은 예외: 'InternalLinkedHashMap<String, dynamic>'은(는) 'List<dynamic>' 유형의 하위 유형이 아닙니다., Unhandled Exception: InternalLinkedHashMap<String, dynamic>' is not a subtype of type 'List<dynamic> 질문 나는 서버에서 JSON 응답을 가져와 콘솔에 출력하려고 노력하고 있습니다. Future login() async { var response = await http.get( Uri.encodeFull("https://etrans.herokuapp.com/test/2"), headers: {"Accept": "application/json"}); this.setState(() { data = json.decode(response.body); }); print(data[0].name); return "Success!"; } Unhandled Exception: type '_InternalLinkedHashMap' is not a subtype of type 'List 이유는 무엇일까요? 답변 다음은 잘못.. 2023. 6. 1.