Java 9 विस्तृत स्तर के साथ JVM घटकों के लिए एक सामान्य लॉगिंग सिस्टम प्रदान कर सकता है। एक नए कमांड-लाइन विकल्प का उपयोग करके: -Xlog सभी लॉगिंग सेटिंग . के लिए और एकीकृत JVM लॉगिंग हमें मूल कारण विश्लेषण (RCA) . करने के लिए एक आसान-से-कॉन्फ़िगर टूल देता है जटिल सिस्टम-स्तरीय JVM घटकों का।
कमांड लाइन -Xlog सभी लॉगिंग JVM घटकों को नियंत्रित करने के लिए इस्तेमाल किया जा सकता है। -Xlog के तर्क नीचे दिए गए नियमों का पालन करें:
- कई तर्क उस क्रम में लागू होते हैं जिस क्रम में वे कमांड-लाइन में दिखाई देते हैं।
- अंतिम कॉन्फ़िगरेशन नियम:एक ही आउटपुट के लिए, दिए गए क्रम में एकाधिक तर्क एक दूसरे को ओवरराइड कर सकते हैं।
Xlog:अक्षम करें सभी लॉगिंग को बंद कर देता है और लॉगिंग फ्रेमवर्क के सभी कॉन्फ़िगरेशन को साफ़ करता है (चेतावनी . सहित) और त्रुटियां )।
सिंटैक्स
-Xlog:tag[*][=level][:output:decoration:output-option],tag...
-Xlog:सहायता प्रिंट -Xlog उपयोग सिंटैक्स और उपलब्ध टैग, स्तर, डेकोरेटर कुछ उदाहरण कमांड लाइन के साथ।
1) टैग :जब एक लॉग संदेश दिखाया जाता है, तो यह JVM में टैग के एक सेट से जुड़ा होता है जो नामों से पहचानता है:ओएस, जीसी, मॉड्यूल। हम अलग-अलग टैग के लिए अलग-अलग सेटिंग्स लागू करते हैं और '*' एक 'वाइल्डकार्ड' टैग मिलान को दर्शाता है।
2) स्तर :हम विभिन्न स्तरों पर लॉगिंग करते हैं, और उपलब्ध स्तर त्रुटि, चेतावनी, जानकारी, डीबग, ट्रेस और विकसित होते हैं। लॉगिंग अक्षम करने के लिए, फिर वैकल्पिक बंद का उपयोग करें।
3) आउटपुट :आउटपुट तीन प्रकारों का समर्थन करता है:लिखित आकार और घुमाने के लिए कई फाइलों के आधार पर लॉग फ़ाइल रोटेशन के लिए सेट अप करने के लिए stdout, stderr, और टेक्स्ट फ़ाइल।
4) डेकोरेटर :डेकोरेटर नामक संदेश के बारे में अधिक विवरण हैं। यहाँ सूची है:
- time/timemillis/timenanos :वर्तमान समय और दिनांक (ISO-8601 प्रारूप)
- अपटाइम/अपटाइममिलिस/अपटाइमैनोस :JVM की शुरुआत के बाद का समय
- पिड :प्रक्रिया पहचानकर्ता
- टिड :धागा पहचानकर्ता
- स्तर :लॉग संदेश से संबद्ध स्तर
- टैग :लॉग संदेश से संबद्ध टैग
C:\Program Files\Java\jdk-9.0.4\bin>java -Xlog:help -Xlog Usage: -Xlog[:[what][:[output][:[decorators][:output-options]]]] where 'what' is a combination of tags and levels of the form tag1[+tag2...][*][=level][,...] Unless wildcard (*) is specified, only log messages tagged with exactly the tags specified will be matched. Available log levels: off, trace, debug, info, warning, error Available log decorators: time (t), utctime (utc), uptime (u), timemillis (tm), uptimemillis (um), timenanos (tn), uptimenanos (un), hostname(hn), pid (p), tid (ti), level (l), tags (tg) Decorators can also be specified as 'none' for no decoration. Available log tags: add, age, alloc, aot, annotation, arguments, attach, barrier, biasedlocking, blocks, bot, breakpoint, census, class, classhisto, cleanup, compaction, constraints, constantpool, coops, cpu, cset, data, defaultmethods, dump, ergo, exceptions, exit, fingerprint, freelist, gc, hashtables, heap, humongous, ihop, iklass, in it, itables, jni, jvmti,liveness, load, loader, logging, mark, marking, methodcomparator, metadata, metaspace, mmu, module, monitorinflation,monitormismatch, nmethod, normalize, objecttagging, obsolete, oopmap, os, pagesize, patch, path, phases, plab, promotion,preorder, protectiondomain, ref, redefine, refine, region, remset, purge, resolve, safepoint, scavenge, scrub, stacktrace,stackwalk, start, startuptime, state, stats, stringdedup, stringtable, stackmap, subclass, survivor, sweep, task, thread,tlab, time, timer, update, nload, verification, verify, vmoperation, vtables, workgang, jfr, system, parser, bytecode,setting, event Specifying 'all' instead of a tag combination matches all tag combinations. Described tag combinations: logging: Logging for the log framework itself Available log outputs: stdout, stderr, file= Specifying %p and/or %t in the filename will expand to the JVM's PID and startup timestamp, respectively. Some examples: -Xlog Log all messages using 'info' level to stdout with 'uptime', 'levels' and 'tags' decorations. (Equivalent to -Xlog:all=info:stdout:uptime,levels,tags). -Xlog:gc Log messages tagged with 'gc' tag using 'info' level to stdout, with default decorations. -Xlog:gc,safepoint Log messages tagged either with 'gc' or 'safepoint' tags, both using 'info' level, to stdout, with default decorations. (Messaged tagged with both 'gc' and 'safepoint' will not be logged.)