Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] How to enable plugin logging
  • From: Ming Cheng <chengm349@xxxxxxxxxxx>
  • Date: Tue, 25 Feb 2020 05:28:10 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=none; dmarc=none; dkim=none; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=82dXY6Iw+tJkmz0uAOLKb69YP5cIYl76yAPwSkzwE5M=; b=Zi7t/BiWrXZeF8YINae/C3VAqSnKSTsUsN62fdQL3ctjWd51UAVKeR0ClgoHF7r/VOd01PvlpgApLzadtxdqV17o7CAViERUMYxrFPDDjulgou78oWm3qkgwXr4MSsnktDzWcf21FY61JIhTBFhtfq3JogBuM16lJvxRz/MyrN3sbEwx8n6S/slSbutvcDG5pKfKwuCMWB9OgJf3SPIgopUG7f87evzwtCug0fMjoD6A6cCUErzg5IFYjn5GIYLVHJDhn2zxglACMiQx5bhFaEZKBwFr0Ukv8UXXjgSPPd0UsHqBw9L9YMNVeOABK0MlzwLJekTLtFmKJOhAz0CRZg==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=W0Eqst5lwObXnK0p216X9KK5rWH35tf2jbeuV/kAPGgCq/tC1/fLkE2tTRqYarCnytdKPsie1zOfi+emydv7mYEgHQJSf+RmoFMjjIjHms0etsAbxBHFvrarbIq/80Lv/v4/NNQGe3MY3HNFxRahqsPcX9vCuN+SAkWQh1RKa/fy9ylpfylBiaMopAfotO4Ee5myixmuGiNj7Y8rvIJmgT7BGSciobuUTM9OyefuAq1/8SNUPBvAUZaCTnCzDMhnezn5T7NHCMharGn05lpdqgCkw4tYoCaesgLpgJK2VRG0DNd33Yp13oTWFeFkMunKrizc85XVNSoRm4DzGp6DDw==
  • Delivered-to: cdt-dev@xxxxxxxxxxx
  • List-archive: <https://www.eclipse.org/mailman/private/cdt-dev>
  • List-help: <mailto:cdt-dev-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/cdt-dev>, <mailto:cdt-dev-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/cdt-dev>, <mailto:cdt-dev-request@eclipse.org?subject=unsubscribe>
  • Thread-index: AQHV65u4ETM2WfowlUqnC6ZlD/9B2w==
  • Thread-topic: How to enable plugin logging

Hi,

 

My open source code has these pom.xml configurations :

 

<dependency>

<groupId>org.slf4j</groupId>

<artifactId>slf4j-api</artifactId>

<version>1.7.7</version>

</dependency>

<dependency>

<groupId>org.slf4j</groupId>

<artifactId>slf4j-log4j12</artifactId>

<version>1.7.13</version>

</dependency>

 

And java code in a class:

 

private static final Logger log = LoggerFactory.getLogger(QFixHandler.class);

 

catch (CoreException e) {

            log.error(e.getMessage());

        } catch (InterruptedException e) {

            log.error(e.getMessage());

        }

 

I tried to make my program to call log.error() but I could not see and log file. Anything I should config in Eclipse env?

 

Thanks.

 

Sent from Mail for Windows 10

 


Back to the top