65c489c920
Fixed several issues, and ran a basic test on ironsmith itself. Need to prevent subsequent builds on same versions
14 lines
272 B
Go
14 lines
272 B
Go
// Copyright 2016 Tim Shannon. All rights reserved.
|
|
// Use of this source code is governed by the MIT license
|
|
// that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
import "log"
|
|
|
|
func vlog(format string, v ...interface{}) {
|
|
if verbose {
|
|
log.Printf(format, v...)
|
|
}
|
|
}
|