blob: 598d48e9ccf7a39b8b3f1737c5b48e66f5797b37 [file] [log] [blame]
#!/bin/sh
# Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# common logging function for all memento updater scripts
export MEMENTO_AU_LOG=/var/log/softwareupdate.log
log() {
mkdir -p $(dirname $MEMENTO_AU_LOG)
echo "$(date) $*" >>"$MEMENTO_AU_LOG"
}
export log