Log4net - show time (not date) in console - log4net

I am using log4net to log to the console, and the %date conversionPattern value is too verbose.
I would like to see just hh:mm:ss - the date is not required cos I know what the date is today.
Current config:
[conversionPattern value="%date %-5level - %message%newline" /]

You can use date or utcdate to format a date to your specification:
date
Used to output the date of the logging
event in the local time zone. To
output the date in universal time use
the %utcdate pattern. The date
conversion specifier may be followed
by a date format specifier enclosed
between braces. For example,
%date{HH:mm:ss,fff} or %date{dd MMM
yyyy HH:mm:ss,fff}. If no date format
specifier is given then ISO8601 format
is assumed (Iso8601DateFormatter).
The date format specifier admits the
same syntax as the time pattern string
of the ToString.
For better results it is recommended
to use the log4net date formatters.
These can be specified using one of
the strings "ABSOLUTE", "DATE" and
"ISO8601" for specifying
AbsoluteTimeDateFormatter,
DateTimeDateFormatter and respectively
Iso8601DateFormatter. For example,
%date{ISO8601} or %date{ABSOLUTE}.
These dedicated date formatters
perform significantly better than
ToString.
utcdate
Used to output the date of the logging
event in universal time. The date
conversion specifier may be followed
by a date format specifier enclosed
between braces. For example,
%utcdate{HH:mm:ss,fff} or %utcdate{dd
MMM yyyy HH:mm:ss,fff}. If no date
format specifier is given then ISO8601
format is assumed
(Iso8601DateFormatter).
The date format specifier admits the
same syntax as the time pattern string
of the ToString.
For better results it is recommended
to use the log4net date formatters.
These can be specified using one of
the strings "ABSOLUTE", "DATE" and
"ISO8601" for specifying
AbsoluteTimeDateFormatter,
DateTimeDateFormatter and respectively
Iso8601DateFormatter. For example,
%utcdate{ISO8601} or
%utcdate{ABSOLUTE}.
These dedicated date formatters
perform significantly better than
ToString.
Source: log4net PatternLayout documentation.

Related

Excel - convert ISO8601 date ending in Z into format suitable for entry into Postgres field with type 'timestamp with time zone'

I have a CSV file that I'm opening in Excel. It has dates in this format:
2019-09-15T00:11:57.4030000Z
I want this:
2019-09-15 00:11:57.403+00
I think I may be able to use the "format cells > custom" option in Excel, but what would do I need to specify as the 'type' for the format? I tried using this to get most of it, but it doesnt' work:
yyyy-mm-dd hh:mm:ss.000
And when I try to apply some of the pre-existing types built into Excel, they don't seem to change the date format - it's as if the original date format isn't being recognised as valid.
My OP asks how to do this in Excel, however I found it easier to parse the file with a regex. I used the excellent dnGrep tool for this, with the following pattern, that groups the date and time into substitution groups, then uses them in the replacement as $1 and $2 :
search - ([0-9]{4}[-][0-9]{2}[-][0-9]{2})[T]([0-9]{2}:[0-9]{2}:[0-9]{2}.[0-9]{3})[0-9]{4}Z
replace - $1 $2+00

How to customize SOQL date format

When i select the data from salesforce using the SOQL, am getting the date format as 'YYYY-MM-DDThh:mm:ss-hh:mm' for a date column.
How cam we customize this date value to this format 'YYYY-MM-DD HH24:MI:SS' ?
You can't apply arbitrary formatting to date-time results in SOQL. By default, you'll receive the ISO8601 format shown in your question.
You may request a formatted date using the FORMAT() SOQL function. The result is
When the FORMAT function is applied these fields reflect the appropriate format for the given user locale. The field format matches what appears in the Salesforce Classic user interface. For example, the date December 28, 2015 can appear numerically as 2015-12-28, 28-12-2015, 28/12/2015, 12/28/2015, or 28.12.2015, depending on the org’s locale setting.
You cannot supply a locale or date format to this function. If you need a format other than the user locale, perform this transformation in your client application.

Acumatica Report Writer extract date from date time field

In Acumatica advanced report writer i have a date parameter but when i print this it shows in DD/MM/YYYY HH:MM:SS format. What is the format syntax so it only shows the date in DD/MM/YYYY format?
Thanks
Use the report designer format field:
Date format syntax is from .Net Framework:
custom date and time format strings
If you need a hardcoded format (with slashes) use 'dd/MM/yyyy'.
If you only want the short date format (date without time) use 'd'.
I would pick 'd' format if all you want is to remove time because it will follow the culture and still provide a short date.
Example: 'MM-dd-yyyy' or 'dd/MM/yyyy' etc...

log4j2 PatternLayout Timestamp Format

I want to specify logging timestamp in a particular format %d{YYYY-MM-dd HH:mm:ss.SSS}, but however I manipulate the pattern the timestamp is displayed as '2015-10-19 00:47:15,423'.
Specifying %d{ISO8601} or %d{ABSOLUTE} are taking effect. I am wondering how the timestamp format is picked, when a custom pattern is specified.
If I want to change the comma separator to period, is there a way to accomplish this?
I used %d{yyyy-MM-dd'T'HH:mm:ss.SSSZ} and it worked perfectly.
Note that the T is within single quotes so that it is output as is.
The Z at the end adds the timezone but it can be omitted too.
I used year format in capital letters for this reason the timestamp was falling back to default format.
With this change I can manipulate the timestamp with custom format specifier without any issue.

VBA: proper date format to use

I have few cells where I fill date,and later I use these for calculations(substractions),so tell me which date format is good to use here. That should work for all regional languages and for all date separations like "-","/",".".Example - 12.1.2013.
I tried with -
//Format and Formatdatetime functions
Suggest me some answers please.
Thanks.
For universal dates I'd recommend one of three in order of my preference:
01-FEB-2013, as a format dd-mmm-yyyy
20130201, as format yyyymmdd
01022013, as a format ddmmyyyy

Resources