-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# $Id$ | ||
# vim:et:ft=sh:sts=2:sw=2 | ||
# | ||
# Copyright 2008 Kate Ward. All Rights Reserved. | ||
# Released under the LGPL (GNU Lesser General Public License) | ||
# Author: [email protected] (Kate Ward) | ||
# Copyright 2008-2018 Kate Ward. All Rights Reserved. | ||
# Released under the Apache License 2.0 license. | ||
# | ||
# Logging framework 4 SHell scripts | ||
# http://log4sh.sourceforge.net/ | ||
# https://github.com/kward/log4sh | ||
# | ||
# Author: [email protected] (Kate Ward) | ||
# | ||
# This module implements something like the log4j module from the Apache group. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
#! /bin/sh | ||
# $Id$ | ||
#!/bin/sh | ||
# vim:et:ft=sh:sts=2:sw=2 | ||
# | ||
# Copyright 2008 Kate Ward. All Rights Reserved. | ||
# Released under the LGPL (GNU Lesser General Public License) | ||
# Author: [email protected] (Kate Ward) | ||
# Copyright 2008-2018 Kate Ward. All Rights Reserved. | ||
# Released under the Apache License 2.0 license. | ||
# | ||
# log4sh unit test for the ConsoleAppender. | ||
# https://github.com/kward/log4sh | ||
# | ||
# Author: [email protected] (Kate Ward) | ||
|
||
# load test helpers | ||
. ./log4sh_test_helpers | ||
|