Toensure your candles arrive in perfect condition, we do not ship candle orders that cannot be delivered before the weekend. This is to prevent your candles from sitting in a warehouse over the weekend, where high temperatures could cause them to melt. We appreciate your understanding and patience. If you have any questions or need further assistance, please feel free to contact our customer service team
in...@nivenmorgan.com or
214.515.9090
On St. Charles Avenue in New Orleans. In the souks of Marrakech. By the sea in the French Riviera.
Niven Morgan travels the world capturing the essence of exotic locales to serve as the spirit and inspiration for his Destinations line.
The content contained in this website is the property of The American Morgan Horse Association (AMHA). All content is subject to copyright. AMHA takes seriously its responsibility to protect its intellectual property, including without limitation its trademarks, service marks, and copyrights. Other than by printing discrete, searched articles for research purposes, no information on this website may be reproduced in whole or in part without prior written consent of AMHA. Such consent can be requested by sending an email to
in...@morganhorse.com.
"We all share a passion for the Morgan horse. While we don't all share the same activities or personal preferences, we all can focus on the unifying fact that we all share a love for the Morgan breed."
C.A. Lee, III, Vice President and Eastern Region Director
Create a new morgan logger middleware function using the given format and options.The format argument may be a string of a predefined name (see below for the names),a string of a format string, or a function that will produce a log entry.
The format function will be called with three arguments tokens, req, and res,where tokens is an object with all defined tokens, req is the HTTP request and resis the HTTP response. The function is expected to return a string that will be the logline, or undefined / null to skip logging.
Write log line on request instead of response. This means that a requests willbe logged even if the server crashes, but data from the response (like theresponse code, content length, etc.) cannot be logged.
Concise output colored by response status for development use. The :statustoken will be colored green for success codes, red for server error codes,yellow for client error codes, cyan for redirection codes, and uncoloredfor information codes.
To define a token, simply invoke morgan.token() with the name and a callback function.This callback function is expected to return a string value. The value returned is thenavailable as ":type" in this case:
The token function is expected to be called with the arguments req and res, representingthe HTTP request and HTTP response. Additionally, the token can accept further arguments ofit's choosing to customize behavior.
If the request/response cycle completes before a response was sent to theclient (for example, the TCP socket closed prematurely by a client abortingthe request), then the status will be empty (displayed as "-" in the log).
Compile a format string into a format function for use by morgan. A format stringis a string that represents a single log line and can utilize token syntax.Tokens are references by :token-name. If tokens accept arguments, they canbe passed using [], for example: :token-name[pretty] would pass the string'pretty' as an argument to the token token-name.
The function returned from morgan.compile takes three arguments tokens, req, andres, where tokens is object with all defined tokens, req is the HTTP request andres is the HTTP response. The function will return a string that will be the log line,or undefined / null to skip logging.
3a8082e126